From 6f3c9855a5839de2bcc8cbd66a256e38d901e7eb Mon Sep 17 00:00:00 2001 From: MSxDOS <15524350+MSxDOS@users.noreply.github.com> Date: Thu, 14 May 2020 05:09:46 +0300 Subject: [PATCH] Fix invalid field type of TTTOOLINFOW (#871) --- 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, }}