fixed warning

svn path=/trunk/; revision=6339
This commit is contained in:
Thomas Bluemel 2003-10-16 18:03:26 +00:00
parent db8287ce57
commit 9ab1a381bc

View file

@ -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);