mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 16:43:04 +00:00
[ROSTESTS] fix x64 build and fix/disable warnings
This commit is contained in:
parent
6a67450893
commit
42d2d5ec9c
56 changed files with 229 additions and 171 deletions
|
@ -16,7 +16,7 @@
|
|||
|
||||
BOOL CheckWindowClass(HWND hwnd, PCWSTR className)
|
||||
{
|
||||
ULONG size = (wcslen(className) + 1)* sizeof(WCHAR);
|
||||
ULONG size = (lstrlenW(className) + 1)* sizeof(WCHAR);
|
||||
PWCHAR buffer = (PWCHAR)malloc(size);
|
||||
if (GetClassNameW(hwnd, buffer, size ) == 0)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue