Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

23 lines
572 B

#ifndef __MYINF_H__
#define __MYINF_H__
#include "filemap.h"
class CMyInf : public CFileMap {
public:
CMyInf();
~CMyInf();
BOOL FindStringSection();
BOOL bOpen(LPCSTR FileName,LPCTSTR Locale);
BOOL AppendNonStringSectionPart(CMemFile& MemFile);
BOOL AppendStringSectionPart(CMemFile& MemFile);
BOOL Duplicate(CMemFile& MemFile);
private:
BOOL _GenerateStringName(LPCSTR Locale);
LPBYTE m_SectionStart;
LPBYTE m_SectionEnd;
WCHAR m_Locale[20];
};
#endif