Artifact 03fdad9b5bd4d6abd386b3f1caadaf1a415dd0e0
- File
src/win32/rpc.d
-
2015-05-05 06:49:05
- part of checkin
[9b639cf2d6]
on branch trunk
- Working version for update to 2.067.
The problem was __gshared. Replacing it with TLS fixed the issue. Remaining problem is that "hack.d"'s CloseHandle hack is not working anymore.
(user: kinaba) [annotate]
-
2015-05-05 06:49:05
- part of checkin
[9b639cf2d6]
on branch trunk
- Working version for update to 2.067.
/***********************************************************************\
* rpc.d *
* *
* Windows API header module *
* *
* Translated from MinGW Windows headers *
* *
* Placed into public domain *
\***********************************************************************/
module win32.rpc;
/* Moved to rpcdecp (duplicate definition).
typedef void *I_RPC_HANDLE;
alias long RPC_STATUS;
// Moved to rpcdce:
RpcImpersonateClient
RpcRevertToSelf
*/
public import win32.unknwn;
public import win32.rpcdce; // also pulls in rpcdcep
public import win32.rpcnsi;
public import win32.rpcnterr;
public import win32.winerror;
alias MIDL_user_allocate midl_user_allocate;
alias MIDL_user_free midl_user_free;
extern (Windows) {
int I_RpcMapWin32Status(RPC_STATUS);
}