diff options
Diffstat (limited to 'specs/winapi.py')
-rw-r--r-- | specs/winapi.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/specs/winapi.py b/specs/winapi.py index 3697f858..445039ff 100644 --- a/specs/winapi.py +++ b/specs/winapi.py @@ -61,6 +61,11 @@ BOOL = Enum("BOOL", [ "TRUE", ]) +PSTR = Alias("PSTR", CString) +PCSTR = Alias("PCSTR", ConstCString) +PWSTR = Alias("PWSTR", WString) +PCWSTR = Alias("PCWSTR", ConstWString) + LPLONG = Pointer(LONG) LPWORD = Pointer(WORD) LPDWORD = Pointer(DWORD) |