diff options
author | midipix <writeonce@midipix.org> | 2020-06-06 12:40:48 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2020-06-06 13:00:16 +0000 |
commit | a820b0a304cf5b8c74fb4760249174db2af79bf0 (patch) | |
tree | 4201a651b0d20cf172fd637bacb97af2456f4487 /include | |
parent | 1827b23153dffde126e7de59e23ad8a55e7de11f (diff) | |
download | ntapi-a820b0a304cf5b8c74fb4760249174db2af79bf0.tar.bz2 ntapi-a820b0a304cf5b8c74fb4760249174db2af79bf0.tar.xz |
__ntapi_tt_string_to_guid_utf16(): fix signature.
Diffstat (limited to 'include')
-rw-r--r-- | include/ntapi/nt_guid.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ntapi/nt_guid.h b/include/ntapi/nt_guid.h index a091f42..2c27f23 100644 --- a/include/ntapi/nt_guid.h +++ b/include/ntapi/nt_guid.h @@ -31,7 +31,7 @@ typedef void __fastcall ntapi_tt_guid_to_string_utf16( __out nt_guid_str_utf16 * guid_str); typedef int32_t __fastcall ntapi_tt_string_to_guid_utf16( - __in nt_guid_str_utf16 * guid_str, - __out nt_guid * guid); + __in const nt_guid_str_utf16 * guid_str, + __out nt_guid * guid); #endif |