- 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

@ -198,7 +198,7 @@ WlanScan(IN HANDLE hClientHandle,
}
void __RPC_FAR * __RPC_USER
midl_user_allocate(size_t len)
midl_user_allocate(SIZE_T len)
{
return HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, len);
}