home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 October / PCWorld_1999-10_cd1.bin / Hardware / Drivers / APISpy / Errors.h < prev    next >
C/C++ Source or Header  |  1999-07-24  |  3KB  |  35 lines

  1. #ifndef ERRORS_H
  2. #define ERRORS_H
  3.  
  4. #define ERRORMSG                    "\nAPISpy32 is unable to continue and will now terminate."
  5.  
  6. #define ERROR_GETWINDOWSVERSION     "An error occured while obtaining Windows version information."
  7. #define ERROR_MAILSLOT              "An error occured while creating APISpy32_Mailslot."
  8. #define ERROR_APISPY32DLL_NT        "An error occured while loading APISpyNT.dll."
  9. #define ERROR_APISPY32DLL_9X        "An error occured while loading APISpy9x.dll."
  10. #define ERROR_PSAPI                 "An error occured while initializing psapi.dll."
  11. #define ERROR_TOOLHELP32            "An error occured while initializing toolhelp functions."
  12. #define ERROR_LOGMUTEX              "An error occured while creating APISpy32_LogMutex."
  13. #define ERROR_OVERFLOWEVENT         "An error occured while creating APISpy32_OverflowEvent."
  14. #define ERROR_LOGEVENT              "An error occured while creating APISpy32_LogEvent."
  15. #define ERROR_LOGTHREADEXITEVENT    "An error occured while creating LogThreadExitEvent."
  16. #define ERROR_INJECTTHREADEXITEVENT "An error occured while creating InjectThreadExitEvent."
  17. #define ERROR_LISTVIEWMUTEX         "An error occured while creating ListViewMutex."
  18. #define ERROR_GETLOGPARAMETERS      "An error occured while obtaining address of GetLogParameters."
  19. #define ERROR_ADVANCETONEXTLOGENTRY "An error occured while obtaining address of AdvanceToNextLogEntry."
  20. #define ERROR_SETCAPTUREEVENTSFLAG  "An error occured while obtaining address of SetCaptureEventsFlag."
  21. #define ERROR_SETAPISPY32PROCESSID  "An error occured while obtaining address of SetAPISpy32ProcessId."
  22. #define ERROR_INJECTDLLTHREAD       "An error occured while creating the DLL injection thread."
  23. #define ERROR_LOGTHREAD             "An error occured while creating the event logging thread."
  24. #define ERROR_REGISTERCLASS         "An error occured during registration of the main window class."
  25. #define ERROR_INITINSTANCE          "An error occured while creating main window."
  26. #define ERROR_LISTVIEW              "An error occured while creating main list view control."
  27.  
  28. #define WARNING_ACCELERATORS        "An error occured while loading the keyboard accelerators.\nYou can still use APISpy32, but you will not be able to use keyboard shortcuts\nto access menu commands."
  29. #define WARNING_TOOLBAR             "An error occured while creating the toolbar.\nYou can still use APISpy32, but you will need to access the main menu for issuing commands."
  30. #define WARNING_DEBUGPRIVILEGE      "An error occured while obtaining debug privileges.\nAPISpy32 will not intercept API calls made by system processes."
  31. #define WARNING_SHELLEXECUTE        "An error occured while loading help file."
  32. #define WARNING_OPENLOGFILE         "An error occured while creating log file."
  33.  
  34. #endif
  35.