- Make RPC_STATUS respect __ROS_LONG64__ -- fixes a bunch of format warnings in the rpcrt4 Winetest.
svn path=/trunk/; revision=42513
PVOID BaseAddress;
PVOID AllocationBase;
ULONG AllocationProtect;
- ULONG RegionSize;
+ SIZE_T RegionSize;
ULONG State;
ULONG Protect;
ULONG Type;
typedef void * I_RPC_HANDLE;
+#ifndef __ROS_LONG64__
typedef long RPC_STATUS;
+#else
+typedef int RPC_STATUS;
+#endif
#define __RPC_FAR
#if defined(__RPC_WIN32__) || defined(__RPC_WIN64__)
PVOID BaseAddress;
PVOID AllocationBase;
DWORD AllocationProtect;
- DWORD RegionSize;
+ SIZE_T RegionSize;
DWORD State;
DWORD Protect;
DWORD Type;