Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/doitsujin/dxvk.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEllie Hermaszewska <git@monoid.al>2023-07-29 20:01:01 +0300
committerGitHub <noreply@github.com>2023-07-29 20:01:01 +0300
commitdfbebba6b5b3f65e9d44ebad03d403e55e19384f (patch)
tree0f57eb6f03b822168b0fe15326e9693b9c4166a2
parent4ed04268fdb0ff607f5802c72cf79a505d85fb29 (diff)
[native] Add CHAR and PCSTR to windows_base.h
-rw-r--r--include/native/windows/windows_base.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/native/windows/windows_base.h b/include/native/windows/windows_base.h
index ac1c441f..25411050 100644
--- a/include/native/windows/windows_base.h
+++ b/include/native/windows/windows_base.h
@@ -31,6 +31,9 @@ typedef wchar_t WCHAR;
typedef WCHAR *NWPSTR, *LPWSTR, *PWSTR;
typedef unsigned char UCHAR, *PUCHAR;
+typedef char CHAR;
+typedef const CHAR *LPCSTR, *PCSTR;
+
typedef INT BOOL;
typedef BOOL WINBOOL;