summaryrefslogtreecommitdiff
path: root/src/pal/inc/rt/rpc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/pal/inc/rt/rpc.h')
-rw-r--r--src/pal/inc/rt/rpc.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/src/pal/inc/rt/rpc.h b/src/pal/inc/rt/rpc.h
new file mode 100644
index 0000000000..e63e617da1
--- /dev/null
+++ b/src/pal/inc/rt/rpc.h
@@ -0,0 +1,34 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+//
+
+//
+// ===========================================================================
+// File: rpc.h
+//
+// ===========================================================================
+// dummy rpc.h for PAL
+
+#ifndef __RPC_H__
+#define __RPC_H__
+
+#include "palrt.h"
+
+#define __RPC_STUB
+#define __RPC_USER
+#define __RPC_FAR
+
+#define DECLSPEC_UUID(x) __declspec(uuid(x))
+#define MIDL_INTERFACE(x) struct DECLSPEC_UUID(x) DECLSPEC_NOVTABLE
+
+#define EXTERN_GUID(itf,l1,s1,s2,c1,c2,c3,c4,c5,c6,c7,c8) \
+ EXTERN_C const IID DECLSPEC_SELECTANY itf = {l1,s1,s2,{c1,c2,c3,c4,c5,c6,c7,c8}}
+
+interface IRpcStubBuffer;
+interface IRpcChannelBuffer;
+
+typedef void* PRPC_MESSAGE;
+typedef void* RPC_IF_HANDLE;
+
+#endif // __RPC_H__