From aac36d1af82f18104efe52c79497b513e4e4445c Mon Sep 17 00:00:00 2001 From: Doug Coleman Date: Sun, 13 Mar 2016 01:32:05 -0800 Subject: [PATCH] windows.types: LPSTR is a utf8 string. Add LPTCSTR. --- basis/windows/types/types.factor | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/basis/windows/types/types.factor b/basis/windows/types/types.factor index f735f6c5a5..e765e4264e 100644 --- a/basis/windows/types/types.factor +++ b/basis/windows/types/types.factor @@ -72,6 +72,8 @@ TYPEDEF: size_t SIZE_T TYPEDEF: ptrdiff_t SSIZE_T TYPEDEF: { c-string utf16n } LPCSTR +TYPEDEF: { c-string utf16n } LPTCSTR + TYPEDEF: { c-string utf16n } LPWSTR TYPEDEF: WCHAR TCHAR TYPEDEF: LPWSTR LPTCH @@ -129,10 +131,9 @@ TYPEDEF: BYTE* LPBYTE TYPEDEF: { c-string utf16n } LPCWSTR ! TYPEDEF: WCHAR* LPWSTR -TYPEDEF: { c-string utf16n } LPSTR +TYPEDEF: { c-string utf8 } LPSTR TYPEDEF: { c-string utf16n } LPCTSTR TYPEDEF: { c-string utf16n } LPWTSTR - TYPEDEF: { c-string utf16n } LPTSTR TYPEDEF: LPCSTR PCTSTR TYPEDEF: LPSTR PTSTR -- 2.34.1