cfg: Added support for the Windows functions: DeleteFile() and _access().
This commit is contained in:
parent
fd8fb9e4f4
commit
d676022556
|
@ -2077,7 +2077,6 @@ HFONT CreateFont(
|
|||
<arg nr="1">
|
||||
<not-null/>
|
||||
<not-uninit/>
|
||||
<strz/>
|
||||
</arg>
|
||||
<arg nr="2">
|
||||
<not-null/>
|
||||
|
@ -2088,4 +2087,25 @@ HFONT CreateFont(
|
|||
<not-uninit/>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- BOOL WINAPI DeleteFile(_In_ LPCTSTR lpFileName);-->
|
||||
<function name="DeleteFile,DeleteFileA,DeleteFileW">
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<arg nr="1">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
</function>
|
||||
<!-- int _access(const char *path, int mode);
|
||||
int _waccess(const wchar_t *path, int mode); -->
|
||||
<function name="_access,_waccess,_taccess">
|
||||
<noreturn>false</noreturn>
|
||||
<leak-ignore/>
|
||||
<arg nr="1">
|
||||
<not-null/>
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
<arg nr="2">
|
||||
<not-uninit/>
|
||||
</arg>
|
||||
</function>
|
||||
</def>
|
||||
|
|
Loading…
Reference in New Issue