summaryrefslogtreecommitdiffhomepage
path: root/include/ntapi/nt_ipc.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/ntapi/nt_ipc.h')
-rw-r--r--include/ntapi/nt_ipc.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/include/ntapi/nt_ipc.h b/include/ntapi/nt_ipc.h
index 80fc34c..1dae3b3 100644
--- a/include/ntapi/nt_ipc.h
+++ b/include/ntapi/nt_ipc.h
@@ -32,4 +32,24 @@ typedef int32_t __stdcall ntapi_ipc_create_pipe(
__out void ** hpipe_write,
__in uint32_t advisory_buffer_size __optional);
+
+typedef int32_t __stdcall ntapi_ipc_connect_by_attr(
+ __out void ** hport,
+ __in nt_port_attr * attr);
+
+
+typedef int32_t __stdcall ntapi_ipc_connect_by_name(
+ __out void ** hport,
+ __in nt_port_name * name);
+
+
+typedef int32_t __stdcall ntapi_ipc_connect_by_symlink(
+ __out void ** hport,
+ __in void * hsymlink);
+
+
+typedef int32_t __stdcall ntapi_ipc_connect_by_port(
+ __in void * hconn,
+ __in nt_port_attr * attr);
+
#endif