mirror of
https://github.com/apple/foundationdb.git
synced 2025-05-17 03:12:21 +08:00
add renameFile to WinASIO
This commit is contained in:
parent
7cb529ddb3
commit
7f758328c0
@ -128,6 +128,12 @@ public:
|
|||||||
|
|
||||||
return result.getFuture();
|
return result.getFuture();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static Future<Void> renameFile(std::string const& from, std::string const& to) {
|
||||||
|
::renameFile(from, to);
|
||||||
|
return Void();
|
||||||
|
}
|
||||||
|
|
||||||
virtual Future<Void> write( void const* data, int length, int64_t offset ) {
|
virtual Future<Void> write( void const* data, int length, int64_t offset ) {
|
||||||
/*
|
/*
|
||||||
FIXME
|
FIXME
|
||||||
|
Loading…
x
Reference in New Issue
Block a user