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
737 B
36 lines
737 B
/************************************************************************
|
|
|
|
Copyright (c) 2001 Microsoft Corporation
|
|
|
|
Module Name :
|
|
|
|
globals.h
|
|
|
|
Abstract :
|
|
|
|
Global variables
|
|
|
|
Author :
|
|
|
|
Revision History :
|
|
|
|
***********************************************************************/
|
|
|
|
#ifndef _MMC_GLOBALS_H
|
|
#define _MMC_GLOBALS_H
|
|
|
|
#include <tchar.h>
|
|
|
|
#ifndef STRINGS_ONLY
|
|
#define IDM_BUTTON1 0x100
|
|
#define IDM_BUTTON2 0x101
|
|
|
|
extern HINSTANCE g_hinst;
|
|
extern ULONG g_uObjects;
|
|
|
|
#define OBJECT_CREATED InterlockedIncrement((long *)&g_uObjects);
|
|
#define OBJECT_DESTROYED InterlockedDecrement((long *)&g_uObjects);
|
|
|
|
#endif
|
|
|
|
#endif // _MMC_GLOBALS_H
|