windows.cfg: Add support for CreateFileA and CreateFileW (#1529)
References: https://docs.microsoft.com/en-us/windows/desktop/api/fileapi/nf-fileapi-createfilea https://docs.microsoft.com/en-us/windows/desktop/api/fileapi/nf-fileapi-createfilew
This commit is contained in:
parent
e2c433a0f8
commit
f8b8597a9b
|
@ -1043,6 +1043,8 @@
|
|||
<resource>
|
||||
<alloc init="true">CreateThread</alloc>
|
||||
<alloc init="true">CreateFile</alloc>
|
||||
<alloc init="true">CreateFileA</alloc>
|
||||
<alloc init="true">CreateFileW</alloc>
|
||||
<alloc init="true">OpenFile</alloc>
|
||||
<alloc init="true">CreateJobObject</alloc>
|
||||
<alloc init="true">CreateRemoteThread</alloc>
|
||||
|
@ -1662,7 +1664,7 @@
|
|||
_In_ DWORD dwCreationDisposition,
|
||||
_In_ DWORD dwFlagsAndAttributes,
|
||||
_In_opt_ HANDLE hTemplateFile); -->
|
||||
<function name="CreateFile">
|
||||
<function name="CreateFile,CreateFileA,CreateFileW">
|
||||
<noreturn>false</noreturn>
|
||||
<returnValue type="HANDLE"/>
|
||||
<arg nr="1">
|
||||
|
|
Loading…
Reference in New Issue