Mercurial > wgsdk
comparison src/include/dirtools.h @ 10:42ac054c0231
*: huge refactoring
dirtools now uses wchar (wayyy overdue)
the timer doesn't have a stupid design anymore
we don't use windows.h at all now
...
author | Paper <paper@paper.us.eu.org> |
---|---|
date | Sun, 11 Feb 2024 19:43:31 -0500 |
parents | d91dfd53b8b4 |
children |
comparison
equal
deleted
inserted
replaced
9:07f0e2f43204 | 10:42ac054c0231 |
---|---|
1 #ifndef __dirtools_h | 1 #ifndef __dirtools_h |
2 #define __dirtools_h | 2 #define __dirtools_h |
3 int dirtools_create_directory(char* path); | 3 |
4 char* dirtools_concat_paths(char* a, char* b); | 4 #include <windef.h> |
5 #endif | 5 #include <winnt.h> |
6 | |
7 int dirtools_create_directory(LPCWSTR path); | |
8 LPWSTR dirtools_concat_paths(LPCWSTR a, LPCWSTR b); | |
9 | |
10 #endif // __dirtools_h |