Click here to Skip to main content
15,892,965 members
Articles / Programming Languages / C++

Htmlhelp Forensics

Rate me:
Please Sign up or sign in to vote.
4.87/5 (49 votes)
12 Aug 2012CPOL13 min read 189.2K   3.5K   99  
Cracking the htmlhelp .chm storage format to remove annoying file-lock bug and for the sheer fun of it!
// stdafx.h : include file for standard system include files,
//  or project specific include files that are used frequently, but
//      are changed infrequently
//

#if !defined(AFX_STDAFX_H__97523229_DBA9_4F4E_ACCC_6C47A9426B02__INCLUDED_)
#define AFX_STDAFX_H__97523229_DBA9_4F4E_ACCC_6C47A9426B02__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000


#include <windows.h>
#include <stdio.h>
#include <htmlhelp.h>
#include <assert.h>

#pragma warning(disable: 4786)
#include <list>
#include <map>
using namespace std;

#include "sample.h"

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_STDAFX_H__97523229_DBA9_4F4E_ACCC_6C47A9426B02__INCLUDED_)

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Denmark Denmark
Christian Ernst Rysgaard
Chief System Developer Consultant
Connectivity Domain Architect, SimCorp A/S

Comments and Discussions