mirror of
https://github.com/pbatard/rufus.git
synced 2025-06-06 01:21:24 -04:00
[misc] update msapi_utf8.h to latest
* Also update appveyor.yml now that MinGW is part of the VS2019 image
This commit is contained in:
parent
590b89a56a
commit
c86a62ed69
3 changed files with 23 additions and 19 deletions
|
@ -1024,6 +1024,15 @@ static __inline int _openU(const char *filename, int oflag , int pmode)
|
|||
}
|
||||
#endif
|
||||
|
||||
static __inline int _unlinkU(const char* path)
|
||||
{
|
||||
int ret;
|
||||
wconvert(path);
|
||||
ret = _wunlink(wpath);
|
||||
wfree(path);
|
||||
return ret;
|
||||
}
|
||||
|
||||
static __inline int _stat64U(const char *path, struct __stat64 *buffer)
|
||||
{
|
||||
int ret;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue