mirror of https://github.com/tongzx/nt5src
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.
34 lines
512 B
34 lines
512 B
/*++
|
|
|
|
Copyright (c) 1996 Microsoft Corporation
|
|
All rights reserved.
|
|
|
|
Module Name:
|
|
|
|
global.hxx
|
|
|
|
Abstract:
|
|
|
|
Contains all global definitions. This will be included in precomp.hxx,
|
|
so it should be kept to a bare minimum of things that change
|
|
infrequently.
|
|
|
|
Author:
|
|
|
|
Albert Ting (AlbertT) 16-Oct-96
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef _GLOBAL_HXX
|
|
#define _GLOBAL_HXX
|
|
|
|
#include "debug.hxx"
|
|
|
|
#ifndef COUNTOF
|
|
#define COUNTOF( a ) (sizeof( a ) / sizeof( a[0] ))
|
|
#endif
|
|
|
|
#endif // ifndef _GLOBAL_HXX
|
|
|