add COMPILER_DEPENDENT_INT64 define to compiler-specific headers and

fix INT64 definition in actypes.h


date	2002.04.04.19.14.00;	author agrover;	state Exp;
This commit is contained in:
aystarik 2005-06-29 20:13:57 +00:00
parent 398a1ea07b
commit e4b57c29ec

View File

@ -1,7 +1,7 @@
/******************************************************************************
*
* Name: actypes.h - Common data types for the entire ACPI subsystem
* $Revision: 1.226 $
* $Revision: 1.227 $
*
*****************************************************************************/
@ -148,6 +148,7 @@ typedef unsigned char BOOLEAN;
typedef unsigned short UINT16;
typedef int INT32;
typedef unsigned int UINT32;
typedef COMPILER_DEPENDENT_INT64 INT64;
typedef COMPILER_DEPENDENT_UINT64 UINT64;
typedef UINT64 NATIVE_UINT;
@ -210,6 +211,7 @@ typedef unsigned char BOOLEAN;
typedef unsigned short UINT16;
typedef int INT32;
typedef unsigned int UINT32;
typedef COMPILER_DEPENDENT_INT64 INT64;
typedef COMPILER_DEPENDENT_UINT64 UINT64;
typedef UINT32 NATIVE_UINT;