windows-nt/Source/XPSP1/NT/drivers/video/ms/test/vchk/ilimpchk.h
2020-09-26 16:20:57 +08:00

25 lines
513 B
C

#ifndef __ILLEGAL_IMPORTS_CHECK_H__
#define __ILLEGAL_IMPORTS_CHECK_H__
#ifdef __cplusplus
extern "C" {
#endif
typedef struct {
LPSTR Ptr;
int Num;
} Names;
BOOL InitIllegalImportsSearch (LPCSTR FileName, LPCSTR SectionNames /*, LPCSTR AllowedImportDLLs*/);
Names CheckSectionsForImports (void);
Names GetImportsList (LPCSTR ModuleName);
void FinilizeIllegalImportsSearch (void);
LPSTR GetNextName(LPSTR NamePtr);
#ifdef __cplusplus
}
#endif
#endif // __ILLEGAL_IMPORTS_CHECK_H__