include: Change to LONG/ULONG in xcmc.h for Win64 compatibility.

This commit is contained in:
Michael Stefaniuc 2009-01-10 02:45:44 +01:00 committed by Alexandre Julliard
parent 3d5de18889
commit 3e948a8384
1 changed files with 2 additions and 2 deletions

View File

@ -25,9 +25,9 @@ extern "C" {
typedef char CMC_sint8;
typedef short CMC_sint16;
typedef long int CMC_sint32;
typedef LONG CMC_sint32;
typedef unsigned short int CMC_uint16;
typedef unsigned long int CMC_uint32;
typedef ULONG CMC_uint32;
typedef void* CMC_buffer;
typedef char* CMC_string;