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.

28 lines
678 B

  1. // main.h
  2. //
  3. // Copyright 2000 Microsoft Corporation, all rights reserved
  4. //
  5. // Created 2-00 anbrad
  6. //
  7. #ifdef _GLOBALS
  8. #define Extern
  9. #define EQ(x) = x
  10. #else
  11. #define Extern extern
  12. #define EQ(x)
  13. #endif
  14. Extern UINT g_unTimer;
  15. Extern DWORD g_dwRetryAttempts;
  16. Extern BOOL g_fTrayPresent;
  17. Extern HINSTANCE g_hInst;
  18. Extern TCHAR g_szMsg[1024];
  19. Extern TCHAR g_szName[64];
  20. Extern TCHAR g_szProblem[1024];
  21. #define SZ_MAIN_WINDOW_CLASS_NAME TEXT("BloodhoundCls")
  22. #define SZ_MAIN_WINDOW_TITLE TEXT("BloodHound Agent")
  23. #define WM_USER_TRAYCALLBACK (WM_USER+1)
  24. INT_PTR CALLBACK DlgProcMsg(HWND, UINT, WPARAM, LPARAM);