summaryrefslogtreecommitdiff
path: root/src/platform/platform_windows.c
diff options
context:
space:
mode:
authoromniscient <17525998+omnisci3nce@users.noreply.github.com>2024-10-05 12:48:05 +1000
committeromniscient <17525998+omnisci3nce@users.noreply.github.com>2024-10-05 12:48:05 +1000
commitdfb6adbcbcc7d50b770b6d5ea82efdd8f8c32e25 (patch)
treea470b91a90716d7ea46fde53ed395449c24583a2 /src/platform/platform_windows.c
parent54354e32c6498cc7f8839ab4deb1208d37216cc5 (diff)
delete documentation workflow
Diffstat (limited to 'src/platform/platform_windows.c')
-rw-r--r--src/platform/platform_windows.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/src/platform/platform_windows.c b/src/platform/platform_windows.c
deleted file mode 100644
index 21ef359..0000000
--- a/src/platform/platform_windows.c
+++ /dev/null
@@ -1,22 +0,0 @@
-#include "platform.h"
-
-#if defined(CEL_PLATFORM_WINDOWS)
-
-#include <shlwapi.h>
-#include <windows.h>
-#pragma comment(lib, "Shlwapi.lib")
-
-path_opt path_parent(arena* a, const char* path) {
- // Duplicate the string because PathRemoveFileSpec mutates in-place
- size_t len = strlen(path) + 1;
- char* path_copy = arena_alloc(a, len);
- strcpy_s(path_copy, len, path);
-
- if (PathRemoveFileSpecA(path_copy)) {
- return (path_opt){ .path = Str8_cstr_view(path_copy), .has_value = true };
- } else {
- return (path_opt){ .has_value = false };
- }
-}
-
-#endif