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.h43
1 files changed, 43 insertions, 0 deletions
diff --git a/include/ntapi/nt_ipc.h b/include/ntapi/nt_ipc.h
index 1dae3b3..7238146 100644
--- a/include/ntapi/nt_ipc.h
+++ b/include/ntapi/nt_ipc.h
@@ -52,4 +52,47 @@ typedef int32_t __stdcall ntapi_ipc_connect_by_port(
__in void * hconn,
__in nt_port_attr * attr);
+
+typedef int32_t __stdcall ntapi_ipc_connect_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_connect_section_by_name(
+ __out void ** hport,
+ __in nt_port_name * name,
+ __out void ** hsection,
+ __out void ** section_addr,
+ __out size_t * section_size);
+
+
+typedef int32_t __stdcall ntapi_ipc_connect_section_by_symlink(
+ __out void ** hport,
+ __in void * hsymlink,
+ __out void ** hsection,
+ __out void ** section_addr,
+ __out size_t * section_size);
+
+
+typedef int32_t __stdcall ntapi_ipc_connect_section_by_port(
+ __in void * hconn,
+ __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,
+ __out void ** section_addr,
+ __out size_t * section_size);
+
+
+typedef int32_t __stdcall ntapi_ipc_disconnect_unmap_section_by_port(
+ __in void * hconn);
+
#endif