37 lines
701 B
C
37 lines
701 B
C
|
/************************************************************************
|
||
|
|
||
|
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
|