ReactOS 0.4.16-dev-732-g2d1144a
wrmdir.cpp
Go to the documentation of this file.
1//
2// wrmdir.cpp
3//
4// Copyright (c) Microsoft Corporation. All rights reserved.
5//
6// The _wrmdir() function, which removes a directory.
7//
8#include <corecrt_internal.h>
9#include <direct.h>
10
11
12
13// Removes the directory specified by the path. The directory must be empty, it
14// must not be the current working directory, and it must not be the root of any
15// drive. Returns 0 on success; returns -1 and sets errno and _doserrno on
16// failure.
17extern "C" int __cdecl _wrmdir(wchar_t const* const path)
18{
20 {
22 return -1;
23 }
24
25 return 0;
26}
#define __cdecl
Definition: accygwin.h:79
void __cdecl __acrt_errno_map_os_error(unsigned long)
Definition: errno.cpp:91
BOOL WINAPI RemoveDirectoryW(IN LPCWSTR lpPathName)
Definition: dir.c:732
DWORD WINAPI GetLastError(void)
Definition: except.c:1042
int __cdecl _wrmdir(wchar_t const *const path)
Definition: wrmdir.cpp:17