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.

30 lines
587 B

  1. /*++ BUILD Version: 0001 Increment this if a change has global effects
  2. Copyright (c) 1993 Microsoft Corporation
  3. Module Name:
  4. imagehlp.h
  5. Abstract:
  6. This module defines the prptotypes and constants required for the image
  7. help routines.
  8. Revision History:
  9. --*/
  10. #ifndef _IMAGEHLP_
  11. #define _IMAGEHLP_
  12. DWORD MapFileAndFixCheckSumA( LPSTR Filename);
  13. DWORD MapFileAndFixCheckSumW( PWSTR Filename);
  14. #ifdef UNICODE
  15. #define MapFileAndFixCheckSum MapFileAndFixCheckSumW
  16. #else
  17. #define MapFileAndFixCheckSum MapFileAndFixCheckSumA
  18. #endif
  19. #endif