Changeset 91837 in vbox for trunk/include
- Timestamp:
- Oct 19, 2021 8:29:57 AM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/nt/nt.h
r91678 r91837 306 306 /** Constant UNICODE_STRING initializer. */ 307 307 #define RTNT_CONSTANT_UNISTR(a_String) { sizeof(a_String) - sizeof(WCHAR), sizeof(a_String), (WCHAR *)a_String } 308 /** Null UNICODE_STRING initializer. */ 309 #define RTNT_NULL_UNISTR() { 0, 0, NULL } 308 310 309 311 /** Declaration wrapper for NT apis. … … 3390 3392 #endif 3391 3393 3394 RT_DECL_NTAPI(VOID) RtlFreeUnicodeString(PUNICODE_STRING); 3392 3395 3393 3396 RT_C_DECLS_END … … 3678 3681 # endif /* IPRT_NT_USE_WINTERNL */ 3679 3682 RT_DECL_NTAPI(SIZE_T) RtlCompactHeap(HANDLE hHeap, ULONG fFlags); 3680 RT_DECL_NTAPI(VOID) RtlFreeUnicodeString(PUNICODE_STRING);3681 3683 RT_DECL_NTAPI(SIZE_T) RtlSizeHeap(HANDLE hHeap, ULONG fFlags, PVOID pvMem); 3682 3684 RT_DECL_NTAPI(NTSTATUS) RtlGetLastNtStatus(VOID);
Note:
See TracChangeset
for help on using the changeset viewer.