windows-nt/Source/XPSP1/NT/admin/services/drizzle/server/mmcexts/globals.h

37 lines
701 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
/************************************************************************
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