diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/ntapi/nt_sem.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/ntapi/nt_sem.h b/include/ntapi/nt_sem.h index 4b6c79b..fa4cd3e 100644 --- a/include/ntapi/nt_sem.h +++ b/include/ntapi/nt_sem.h @@ -22,11 +22,10 @@ /* semaphore info */ typedef struct __attr_ptr_size_aligned__ _nt_sem_info { void * hport; - void * hprocess; - void * hthread; void * section; void * section_addr; size_t section_size; + void * hevent; void * apc_routine; void * apc_context; int32_t semkey; @@ -51,8 +50,8 @@ typedef struct __attr_ptr_size_aligned__ _nt_sem_info { uint32_t ntattr; uint32_t ntshare; uint32_t ntoptions; + nt_iosb ntiosb; nt_iosb * riosb; - void * hevent[2]; } nt_sem_info; |