From b18ca9ae8f46e89d320c43c54dc8e6cfd10c043b Mon Sep 17 00:00:00 2001 From: LiFan <2308045698@qq.com> Date: 星期五, 28 六月 2024 18:15:51 +0800 Subject: [PATCH] update Supplier --- jrj/xframe/system/base.hpp | 14 ++++++++++++-- 1 files changed, 12 insertions(+), 2 deletions(-) diff --git a/jrj/xframe/system/base.hpp b/jrj/xframe/system/base.hpp index 8afd671..13c9185 100644 --- a/jrj/xframe/system/base.hpp +++ b/jrj/xframe/system/base.hpp @@ -41,7 +41,7 @@ typedef const wchar_t* LPCTSTR; typedef wchar_t* LPWSTR; -typedef wchar_t* LPCWSTR; +typedef const wchar_t* LPCWSTR; typedef wchar_t TCHAR; typedef wchar_t* LPTSTR; typedef int BOOL; @@ -56,12 +56,22 @@ typedef UINT_PTR WPARAM; typedef LONG_PTR LPARAM; typedef LONG_PTR LRESULT; -typedef char BYTE; +typedef unsigned char BYTE; typedef unsigned short ushort; typedef unsigned long DWORD; typedef DWORD COLORREF; +typedef unsigned short WORD; +typedef unsigned int UINT; +typedef char CHAR; +typedef wchar_t WCHAR; +typedef void* HANDLE; +typedef const char* LPCSTR; +typedef void* LPVOID; +typedef DWORD* LPDWORD; +typedef const void* LPCVOID; + struct SYSTEMTIME { ushort wYear; ushort wMonth; -- Gitblit v1.9.3