38 lines
911 B
C
38 lines
911 B
C
/* MR1402*/
|
|
/*=========================================================================
|
|
* EnumCsts.h
|
|
* This is a part of the Game project.
|
|
*
|
|
* Version 1.0
|
|
* Creation date 14/02/97
|
|
* Revision date
|
|
*
|
|
* That file needs to be compatible for all platforms.
|
|
*
|
|
* (c) Ubi Studios 1996
|
|
*=======================================================================*/
|
|
|
|
#if !defined(__ENUMCSTS_H__)
|
|
#define __ENUMCSTS_H__
|
|
|
|
/******************************************/
|
|
#if _MSC_VER >= 1000
|
|
#pragma once
|
|
#endif /* _MSC_VER >= 1000 */
|
|
/******************************************/
|
|
|
|
/*
|
|
* if this one is set, all variables accepting constants from a given
|
|
* set of values will have a type causing syntax errors when an attempt
|
|
* to set them to a value outside the set is made.
|
|
*/
|
|
|
|
#if defined(U64)
|
|
#define D_EnumerateConstants
|
|
#else
|
|
/* #define D_EnumerateConstants */
|
|
#endif /* U64 */
|
|
|
|
|
|
#endif
|