mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-14 16:03:17 +00:00
wrmdir -> RemoveDirectoryW
Signed-off-by: Peter Atashian <retep998@gmail.com>
This commit is contained in:
parent
43046becce
commit
8f38eae7ad
@ -271,6 +271,7 @@ pub use funcs::bsd43::{shutdown};
|
|||||||
#[cfg(windows)] pub use funcs::extra::kernel32::{GetOverlappedResult, ConnectNamedPipe};
|
#[cfg(windows)] pub use funcs::extra::kernel32::{GetOverlappedResult, ConnectNamedPipe};
|
||||||
#[cfg(windows)] pub use funcs::extra::kernel32::{DisconnectNamedPipe, OpenProcess};
|
#[cfg(windows)] pub use funcs::extra::kernel32::{DisconnectNamedPipe, OpenProcess};
|
||||||
#[cfg(windows)] pub use funcs::extra::kernel32::{MoveFileExW, VirtualProtect};
|
#[cfg(windows)] pub use funcs::extra::kernel32::{MoveFileExW, VirtualProtect};
|
||||||
|
#[cfg(windows)] pub use funcs::extra::kernel32::{RemoveDirectoryW};
|
||||||
#[cfg(windows)] pub use funcs::extra::msvcrt::{get_osfhandle, open_osfhandle};
|
#[cfg(windows)] pub use funcs::extra::msvcrt::{get_osfhandle, open_osfhandle};
|
||||||
#[cfg(windows)] pub use funcs::extra::winsock::{ioctlsocket};
|
#[cfg(windows)] pub use funcs::extra::winsock::{ioctlsocket};
|
||||||
|
|
||||||
|
@ -342,7 +342,7 @@ pub fn chmod(p: &Path, mode: uint) -> IoResult<()> {
|
|||||||
|
|
||||||
pub fn rmdir(p: &Path) -> IoResult<()> {
|
pub fn rmdir(p: &Path) -> IoResult<()> {
|
||||||
let p = try!(to_utf16(p));
|
let p = try!(to_utf16(p));
|
||||||
mkerr_libc(unsafe { libc::wrmdir(p.as_ptr()) })
|
super::mkerr_winbool(unsafe { libc::RemoveDirectoryW(p.as_ptr()) })
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn chown(_p: &Path, _uid: int, _gid: int) -> IoResult<()> {
|
pub fn chown(_p: &Path, _uid: int, _gid: int) -> IoResult<()> {
|
||||||
|
Loading…
Reference in New Issue
Block a user