cfg: Added support for the Windows functions: DeleteFile() and _access().

This commit is contained in:
orbitcowboy 2016-05-20 15:19:41 +02:00
parent fd8fb9e4f4
commit d676022556
1 changed files with 21 additions and 1 deletions

View File

@ -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>