aboutsummaryrefslogtreecommitdiffhomepage
path: root/samples/cping/iping.idl
diff options
context:
space:
mode:
Diffstat (limited to 'samples/cping/iping.idl')
-rw-r--r--samples/cping/iping.idl23
1 files changed, 23 insertions, 0 deletions
diff --git a/samples/cping/iping.idl b/samples/cping/iping.idl
new file mode 100644
index 0000000..6713e50
--- /dev/null
+++ b/samples/cping/iping.idl
@@ -0,0 +1,23 @@
+//////////////////////////////////////////////////////////////////////////////
+//
+// Module: iping.idl (cping.exe - COM Ping)
+//
+// Microsoft Research Detours Package
+//
+// Copyright (c) Microsoft Corporation. All rights reserved.
+//
+import "objidl.idl";
+import "oaidl.idl";
+import "oleidl.idl";
+
+
+[object, uuid(decdbeef-d1ac-11d1-96bc-00aa00573fb0), pointer_default(unique)]
+interface IPing : IUnknown
+{
+ HRESULT Ping(void);
+ HRESULT PingToServer([in] LPSTR pszString);
+ HRESULT PingToClient([out] LPSTR *ppszString);
+ HRESULT PingToClientSize([in] ULONG cbOut);
+};
+//
+///////////////////////////////////////////////////////////////// End of File.