summaryrefslogtreecommitdiffhomepage
path: root/src/internal/ntapi.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/internal/ntapi.c')
-rw-r--r--src/internal/ntapi.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/internal/ntapi.c b/src/internal/ntapi.c
index a5d6113..0e9e6e0 100644
--- a/src/internal/ntapi.c
+++ b/src/internal/ntapi.c
@@ -203,6 +203,18 @@ static int32_t __fastcall __ntapi_init_once(ntapi_vtbl ** pvtbl)
__ntapi->sem_cancel = __ntapi_sem_cancel;
__ntapi->sem_free = __ntapi_sem_free;
+ /* nt_msq.h */
+ __ntapi->msq_create = __ntapi_msq_create;
+ __ntapi->msq_open = __ntapi_msq_open;
+ __ntapi->msq_send = __ntapi_msq_send;
+ __ntapi->msq_recv = __ntapi_msq_recv;
+ __ntapi->msq_fcntl = __ntapi_msq_fcntl;
+ __ntapi->msq_ioctl = __ntapi_msq_ioctl;
+ __ntapi->msq_query = __ntapi_msq_query;
+ __ntapi->msq_set = __ntapi_msq_set;
+ __ntapi->msq_cancel = __ntapi_msq_cancel;
+ __ntapi->msq_free = __ntapi_msq_free;
+
/* nt_ldr.h */
__ntapi->ldr_load_system_dll = __ntapi_ldr_load_system_dll;
__ntapi->ldr_create_state_snapshot = __ntapi_ldr_create_state_snapshot;