- Use SIZE_T in MIDL_user_allocate. This reverts r49295.

svn path=/branches/cmake-bringup/; revision=50118
This commit is contained in:
Amine Khaldi 2010-12-24 11:42:18 +00:00
parent bec9e0bfa6
commit 7c5322ff9b
12 changed files with 12 additions and 12 deletions

View file

@ -118,7 +118,7 @@ typedef unsigned char boolean;
#define midl_user_free MIDL_user_free
#define midl_user_allocate MIDL_user_allocate
void * __RPC_USER MIDL_user_allocate(size_t size);
void * __RPC_USER MIDL_user_allocate(SIZE_T size);
void __RPC_USER MIDL_user_free( void * );
#define NdrFcShort(s) (unsigned char)(s & 0xff), (unsigned char)(s >> 8)