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
30 lines
587 B
/*++ BUILD Version: 0001 Increment this if a change has global effects
|
|
|
|
Copyright (c) 1993 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
imagehlp.h
|
|
|
|
Abstract:
|
|
|
|
This module defines the prptotypes and constants required for the image
|
|
help routines.
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef _IMAGEHLP_
|
|
#define _IMAGEHLP_
|
|
|
|
DWORD MapFileAndFixCheckSumA( LPSTR Filename);
|
|
DWORD MapFileAndFixCheckSumW( PWSTR Filename);
|
|
|
|
#ifdef UNICODE
|
|
#define MapFileAndFixCheckSum MapFileAndFixCheckSumW
|
|
#else
|
|
#define MapFileAndFixCheckSum MapFileAndFixCheckSumA
|
|
#endif
|
|
|
|
#endif
|