mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 04:26:32 +00:00
fixed warning
svn path=/trunk/; revision=6339
This commit is contained in:
parent
db8287ce57
commit
9ab1a381bc
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ int STDCALL WinMain(
|
|||
TestWndClass.cbSize = sizeof(WNDCLASSEX);
|
||||
TestWndClass.lpfnWndProc = &TestWndProc;
|
||||
TestWndClass.hInstance = AppInstance;
|
||||
TestWndClass.hCursor = LoadCursor(0, IDC_ARROW);
|
||||
TestWndClass.hCursor = LoadCursor(0, (LPCTSTR)IDC_ARROW);
|
||||
TestWndClass.hbrBackground = CreateSolidBrush(RGB(255,255,230));
|
||||
TestWndClass.lpszClassName = TEST_WND_CLASS;
|
||||
Result = RegisterClassEx(&TestWndClass);
|
||||
|
|
Loading…
Reference in a new issue