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.
24 lines
537 B
24 lines
537 B
#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 FinalizeIllegalImportsSearch (void);
|
|
LPSTR GetNextName(LPSTR NamePtr);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif // __ILLEGAL_IMPORTS_CHECK_H__
|
|
|