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.
27 lines
376 B
27 lines
376 B
/*++
|
|
|
|
Copyright (c) 2000 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
vfmacro.h
|
|
|
|
Abstract:
|
|
|
|
This header contains a collection of macros used by the verifier.
|
|
|
|
Author:
|
|
|
|
Adrian J. Oney (AdriaO) June 7, 2000.
|
|
|
|
Revision History:
|
|
|
|
|
|
--*/
|
|
|
|
|
|
//
|
|
// This macro takes an array and returns the number of elements in it.
|
|
//
|
|
#define ARRAY_COUNT(array) (sizeof(array)/sizeof(array[0]))
|
|
|