mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 07:03:10 +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
|
@ -45,7 +45,7 @@ int APIENTRY wWinMain(HINSTANCE hInstance,
|
|||
*/
|
||||
|
||||
/* 1- Write the WinMain's command line. */
|
||||
dwStringSize = (wcslen(lpCmdLine) + 1) * sizeof(WCHAR);
|
||||
dwStringSize = (lstrlenW(lpCmdLine) + 1) * sizeof(WCHAR);
|
||||
|
||||
WriteFile(hFile,
|
||||
&dwStringSize,
|
||||
|
@ -60,7 +60,7 @@ int APIENTRY wWinMain(HINSTANCE hInstance,
|
|||
NULL);
|
||||
|
||||
/* 2- Write the Win32 mode command line. */
|
||||
dwStringSize = (wcslen(CmdLine) + 1) * sizeof(WCHAR);
|
||||
dwStringSize = (lstrlenW(CmdLine) + 1) * sizeof(WCHAR);
|
||||
|
||||
WriteFile(hFile,
|
||||
&dwStringSize,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue