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.

36 lines
701 B

  1. /************************************************************************
  2. Copyright (c) 2001 Microsoft Corporation
  3. Module Name :
  4. globals.h
  5. Abstract :
  6. Global variables
  7. Author :
  8. Revision History :
  9. ***********************************************************************/
  10. #ifndef _MMC_GLOBALS_H
  11. #define _MMC_GLOBALS_H
  12. #include <tchar.h>
  13. #ifndef STRINGS_ONLY
  14. #define IDM_BUTTON1 0x100
  15. #define IDM_BUTTON2 0x101
  16. extern HINSTANCE g_hinst;
  17. extern ULONG g_uObjects;
  18. #define OBJECT_CREATED InterlockedIncrement((long *)&g_uObjects);
  19. #define OBJECT_DESTROYED InterlockedDecrement((long *)&g_uObjects);
  20. #endif
  21. #endif // _MMC_GLOBALS_H