mirror of
https://github.com/openRuyi-Project/gcc.git
synced 2026-09-07 06:22:00 +00:00
D front-end changes: - Import latest fixes from dmd v2.110.0-beta.1. - The `align' attribute now allows to specify `default' explicitly. - Add primary expression of the form `__rvalue(expression)' which causes `expression' to be treated as an rvalue, even if it is an lvalue. - Shortened method syntax can now be used in constructors. D runtime changes: - Import latest fixes from druntime v2.110.0-beta.1. Phobos changes: - Import latest fixes from phobos v2.110.0-beta.1. gcc/d/ChangeLog: * dmd/MERGE: Merge upstream dmd c57da0cf59. * d-codegen.cc (can_elide_copy_p): New. (d_build_call): Use it. * d-lang.cc (d_post_options): Update for new front-end interface. libphobos/ChangeLog: * libdruntime/MERGE: Merge upstream druntime c57da0cf59. * src/MERGE: Merge upstream phobos ad8ee5587. * testsuite/libphobos.init_fini/custom_gc.d: Adjust test. gcc/testsuite/ChangeLog: * gdc.dg/copy1.d: New test.
32 lines
821 B
D
32 lines
821 B
D
/**
|
|
* Windows API header module
|
|
*
|
|
* Translated from MinGW Windows headers
|
|
*
|
|
* License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost License 1.0)
|
|
* Source: $(DRUNTIMESRC core/sys/windows/_rpc.d)
|
|
*/
|
|
module core.sys.windows.rpc;
|
|
version (Windows):
|
|
|
|
/* Moved to rpcdecp (duplicate definition).
|
|
typedef void *I_RPC_HANDLE;
|
|
alias long RPC_STATUS;
|
|
// Moved to rpcdce:
|
|
RpcImpersonateClient
|
|
RpcRevertToSelf
|
|
*/
|
|
|
|
public import core.sys.windows.unknwn;
|
|
public import core.sys.windows.rpcdce; // also pulls in rpcdcep
|
|
public import core.sys.windows.rpcnsi;
|
|
public import core.sys.windows.rpcnterr;
|
|
public import core.sys.windows.winerror;
|
|
|
|
alias MIDL_user_allocate midl_user_allocate;
|
|
alias MIDL_user_free midl_user_free;
|
|
|
|
extern (Windows) nothrow @nogc {
|
|
int I_RpcMapWin32Status(RPC_STATUS);
|
|
}
|