summaryrefslogtreecommitdiffhomepage
path: root/include/ntapi/nt_ipc.h
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2017-08-04 22:22:22 +0000
committermidipix <writeonce@midipix.org>2017-08-04 17:33:16 -0400
commitedb08567093daae164f6d3955884117dee74fe98 (patch)
treea0cbce284eccf262c4a2c65289b373658af59189 /include/ntapi/nt_ipc.h
parent335494754eba35020cb2d4fd8c976fdb3a6e3507 (diff)
downloadntapi-edb08567093daae164f6d3955884117dee74fe98.tar.bz2
ntapi-edb08567093daae164f6d3955884117dee74fe98.tar.xz
subsystem interfaces: added server-to-server synchronization interfaces.
Diffstat (limited to 'include/ntapi/nt_ipc.h')
-rw-r--r--include/ntapi/nt_ipc.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/ntapi/nt_ipc.h b/include/ntapi/nt_ipc.h
index 7238146..80760c1 100644
--- a/include/ntapi/nt_ipc.h
+++ b/include/ntapi/nt_ipc.h
@@ -85,6 +85,19 @@ typedef int32_t __stdcall ntapi_ipc_connect_section_by_port(
__out size_t * section_size);
+typedef int32_t __stdcall ntapi_ipc_get_port_by_attr(
+ __out void ** hport,
+ __in nt_port_attr * attr);
+
+
+typedef int32_t __stdcall ntapi_ipc_get_port_section_by_attr(
+ __out void ** hport,
+ __in nt_port_attr * attr,
+ __out void ** hsection,
+ __out void ** section_addr,
+ __out size_t * section_size);
+
+
typedef int32_t __stdcall ntapi_ipc_init_section_by_port(
__in void * hconn,
__out void ** hsection,