From 57d9944b680fb4463ddee4a69cf69c78ce07a89d Mon Sep 17 00:00:00 2001 From: MSxDOS <15524350+MSxDOS@users.noreply.github.com> Date: Sun, 1 Mar 2020 00:35:06 +0300 Subject: [PATCH] Fix invalid field type of TTTOOLINFOW --- src/um/commctrl.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/um/commctrl.rs b/src/um/commctrl.rs index ad92fb1d7..0d4d64920 100644 --- a/src/um/commctrl.rs +++ b/src/um/commctrl.rs @@ -1490,7 +1490,7 @@ STRUCT!{struct TTTOOLINFOW { uId: UINT_PTR, rect: RECT, hinst: HINSTANCE, - lpszText: LPSTR, + lpszText: LPWSTR, lParam: LPARAM, lpReserved: *mut c_void, }}