13 lines
331 B
C
13 lines
331 B
C
//-----------------------------------------------------------------------------
|
|
//
|
|
// File: macros.h
|
|
// Copyright (C) 1994-1997 Microsoft Corporation
|
|
// All rights reserved.
|
|
//
|
|
//
|
|
//
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
#define COUNTOF(x) (sizeof(x)/sizeof(*x))
|