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.

27 lines
1.1 KiB

  1. /////////////////////////////////////////////////////////////////////////////
  2. // Function Declarations
  3. //=============================================================================
  4. // Header parsing functions
  5. //=============================================================================
  6. WORD MapToWindowsRes( char * pResName );
  7. LONG WriteResInfo(
  8. BYTE** lplpBuffer, LONG* plBufSize,
  9. WORD wTypeId, LPSTR lpszTypeId, BYTE bMaxTypeLen,
  10. WORD wNameId, LPSTR lpszNameId, BYTE bMaxNameLen,
  11. DWORD dwLang,
  12. DWORD dwSize, DWORD dwFileOffset );
  13. BOOL InitIODLLLink();
  14. //=============================================================================
  15. // IODLL call back functions and HINSTANCE
  16. //=============================================================================
  17. extern HINSTANCE g_IODLLInst;
  18. extern DWORD (PASCAL * g_lpfnGetImage)(HANDLE, LPCSTR, LPCSTR, DWORD, LPVOID, DWORD);
  19. extern DWORD (PASCAL * g_lpfnUpdateResImage)(HANDLE, LPSTR, LPSTR, DWORD, DWORD, LPVOID, DWORD);
  20. extern HANDLE (PASCAL * g_lpfnHandleFromName)(LPCSTR);