Source code of Windows XP (NT5)
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.

54 lines
899 B

  1. //
  2. // Application Verifier UI
  3. // Copyright (c) Microsoft Corporation, 2001
  4. //
  5. //
  6. //
  7. // module: AVGlobal.h
  8. // author: DMihai
  9. // created: 02/23/2001
  10. //
  11. // Description:
  12. //
  13. // Global data declaration.
  14. //
  15. #ifndef __APP_VERIFIER_GLOBAL_H__
  16. #define __APP_VERIFIER_GLOBAL_H__
  17. //
  18. // Application name ("Application Verifier Manager")
  19. //
  20. extern CString g_strAppName;
  21. //
  22. // GUI mode or command line mode?
  23. //
  24. extern BOOL g_bCommandLineMode;
  25. //
  26. // Exe module handle - used for loading resources
  27. //
  28. extern HMODULE g_hProgramModule;
  29. //
  30. // Help file name
  31. //
  32. extern TCHAR g_szAVHelpFile[];
  33. //
  34. // Previous page IDs - used for implementing the "back"
  35. // button functionality
  36. //
  37. extern CDWordArray g_aPageIds;
  38. /////////////////////////////////////////////////////////////////////////////
  39. BOOL AVInitalizeGlobalData();
  40. #endif //#ifndef __APP_VERIFIER_GLOBAL_H__