summaryrefslogtreecommitdiff
path: root/os-win.c
diff options
context:
space:
mode:
authorpommicket <pommicket@gmail.com>2023-01-08 18:48:39 -0500
committerpommicket <pommicket@gmail.com>2023-01-09 13:24:08 -0500
commitc7e80603848df006dc2a3b341063bec1b35ba811 (patch)
tree1624ca42731a856a0d499a339b971ec1cef3b2e0 /os-win.c
parent1051788217ead36b554efe38259dfd257e851fc2 (diff)
start windows fix
Diffstat (limited to 'os-win.c')
-rw-r--r--os-win.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/os-win.c b/os-win.c
index b3c931a..10d121f 100644
--- a/os-win.c
+++ b/os-win.c
@@ -110,6 +110,12 @@ int os_get_cwd(char *buf, size_t buflen) {
return 1;
}
+int os_rename_overwrite(const char *oldname, const char *newname) {
+ wchar_t wide_oldname[4100];
+ wchar_t wide_newname[4100];
+
+}
+
struct timespec time_last_modified(const char *path) {
struct timespec ts = {0};
FILETIME write_time = {0};