ReactOS 0.4.16-dev-937-g7afcd2a
wunlink.cpp File Reference
#include <corecrt_internal.h>
#include <stdio.h>
Include dependency graph for wunlink.cpp:

Go to the source code of this file.

Functions

int __cdecl _wremove (wchar_t const *const path)
 
int __cdecl _wunlink (wchar_t const *const path)
 

Function Documentation

◆ _wremove()

int __cdecl _wremove ( wchar_t const *const  path)

Definition at line 15 of file wunlink.cpp.

16{
17 if (!DeleteFileW(path))
18 {
20 return -1;
21 }
22
23 return 0;
24}
void __cdecl __acrt_errno_map_os_error(unsigned long)
Definition: errno.cpp:91
BOOL WINAPI DeleteFileW(IN LPCWSTR lpFileName)
Definition: delete.c:39
DWORD WINAPI GetLastError(void)
Definition: except.c:1042

Referenced by _wunlink().

◆ _wunlink()

int __cdecl _wunlink ( wchar_t const *const  path)

Definition at line 28 of file wunlink.cpp.

29{
30 return _wremove(path);
31}