windows-nt/Source/XPSP1/NT/admin/services/drizzle/server/mmcexts/globals.h
2020-09-26 16:20:57 +08:00

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