diff options
author | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-05-01 01:23:05 +0200 |
---|---|---|
committer | Steven Le Rouzic <steven.lerouzic@gmail.com> | 2024-05-01 01:23:05 +0200 |
commit | 84062873e162bc4a7c799fb67f72dbd055eb15ca (patch) | |
tree | 9b9aa3aa7dbc923a01d28e50a804d68c37a5d839 /deimos/core/gsl.h | |
parent | 89ae6838075f3579a85d7824d49a051b90c8ed92 (diff) |
Some work on WSI
Diffstat (limited to 'deimos/core/gsl.h')
-rw-r--r-- | deimos/core/gsl.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/deimos/core/gsl.h b/deimos/core/gsl.h index d80d746..1270fa4 100644 --- a/deimos/core/gsl.h +++ b/deimos/core/gsl.h @@ -5,6 +5,8 @@ namespace gsl using zstring = char*;
using czstring = const char*;
+using wzstring = wchar_t*;
+using cwzstring = const wchar_t*;
template<typename T> using owner = T;
|