summaryrefslogtreecommitdiff
path: root/general/WinHEC 2017 Lab/Toaster Driver/Service/RpcServer.h
diff options
context:
space:
mode:
Diffstat (limited to 'general/WinHEC 2017 Lab/Toaster Driver/Service/RpcServer.h')
-rw-r--r--general/WinHEC 2017 Lab/Toaster Driver/Service/RpcServer.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/general/WinHEC 2017 Lab/Toaster Driver/Service/RpcServer.h b/general/WinHEC 2017 Lab/Toaster Driver/Service/RpcServer.h
deleted file mode 100644
index bc7294db..00000000
--- a/general/WinHEC 2017 Lab/Toaster Driver/Service/RpcServer.h
+++ /dev/null
@@ -1,16 +0,0 @@
-#include "metering.h"
-
-#define RPC_STATIC_ENDPOINT L"HsaSampleRpcEndpoint"
-
-// Client context used for making rpc calls using context handle
-// https://msdn.microsoft.com/en-us/library/windows/desktop/aa378674(v=vs.85).aspx
-typedef struct
-{
- RpcServer::Metering* metering;
-} METERING_CONTEXT;
-
-// Create a rpc server endpoint and listen to incoming rpc calls
-DWORD RpcServerStart();
-
-// Signal the rpc server to stop listening to incoming rpc calls
-void RpcServerDisconnect();