mirror of https://github.com/tongzx/nt5src
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.
27 lines
1.1 KiB
27 lines
1.1 KiB
/////////////////////////////////////////////////////////////////////////////
|
|
// Function Declarations
|
|
|
|
//=============================================================================
|
|
// Header parsing functions
|
|
//=============================================================================
|
|
|
|
WORD MapToWindowsRes( char * pResName );
|
|
|
|
LONG WriteResInfo(
|
|
BYTE** lplpBuffer, LONG* plBufSize,
|
|
WORD wTypeId, LPSTR lpszTypeId, BYTE bMaxTypeLen,
|
|
WORD wNameId, LPSTR lpszNameId, BYTE bMaxNameLen,
|
|
DWORD dwLang,
|
|
DWORD dwSize, DWORD dwFileOffset );
|
|
|
|
BOOL InitIODLLLink();
|
|
//=============================================================================
|
|
// IODLL call back functions and HINSTANCE
|
|
//=============================================================================
|
|
|
|
extern HINSTANCE g_IODLLInst;
|
|
extern DWORD (PASCAL * g_lpfnGetImage)(HANDLE, LPCSTR, LPCSTR, DWORD, LPVOID, DWORD);
|
|
extern DWORD (PASCAL * g_lpfnUpdateResImage)(HANDLE, LPSTR, LPSTR, DWORD, DWORD, LPVOID, DWORD);
|
|
extern HANDLE (PASCAL * g_lpfnHandleFromName)(LPCSTR);
|
|
|
|
|