[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:
Pete Batard 2020-03-30 11:09:03 +01:00
parent 590b89a56a
commit c86a62ed69
No known key found for this signature in database
GPG key ID: 38E0CF5E69EDD671
3 changed files with 23 additions and 19 deletions

View file

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