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.

24 lines
537 B

  1. #ifndef __ILLEGAL_IMPORTS_CHECK_H__
  2. #define __ILLEGAL_IMPORTS_CHECK_H__
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. typedef struct {
  7. LPSTR Ptr;
  8. int Num;
  9. } Names;
  10. BOOL InitIllegalImportsSearch (LPCSTR FileName, LPCSTR SectionNames /*, LPCSTR AllowedImportDLLs*/);
  11. Names CheckSectionsForImports (void);
  12. Names GetImportsList (LPCSTR ModuleName);
  13. void FinalizeIllegalImportsSearch (void);
  14. LPSTR GetNextName(LPSTR NamePtr);
  15. #ifdef __cplusplus
  16. }
  17. #endif
  18. #endif // __ILLEGAL_IMPORTS_CHECK_H__