windows.cfg: Added support for CreateDirectory and RemoveDirectory functions.
This commit is contained in:
parent
dd0158ee63
commit
c44b055fc1
|
@ -3554,4 +3554,24 @@ HFONT CreateFont(
|
|||
<not-null/>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- BOOL WINAPI CreateDirectory(_In_ LPCTSTR lpPathName,
|
||||
_In_opt_ LPSECURITY_ATTRIBUTES lpSecurityAttributes); -->
|
||||
<function name="CreateDirectory,CreateDirectoryA,CreateDirectoryW">
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<arg nr="1">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
<arg nr="2" default="0">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- BOOL WINAPI RemoveDirectory(_In_ LPCTSTR lpPathName); -->
|
||||
<function name="RemoveDirectory,RemoveDirectoryA,RemoveDirectoryW">
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<arg nr="1">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
</function>
|
||||
</def>
|
||||
|
|
Loading…
Reference in New Issue