- revert r32389. It's both useless and incorrect.

- thanks to shadowflare for noticing

svn path=/trunk/; revision=33383
This commit is contained in:
Ged Murphy 2008-05-09 07:30:26 +00:00
parent 3dcbb5e00d
commit e53bcfc884

View file

@ -303,15 +303,11 @@ LRESULT CALLBACK EmptyWindowProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lPa
} }
// Registers a minimal window class for passing to the dll function // Registers a minimal window class for passing to the dll function
ATOM RegisterBlankClass(HINSTANCE hInstance, HINSTANCE hPrevInstance) BOOL RegisterBlankClass(HINSTANCE hInstance, HINSTANCE hPrevInstance)
{ {
WNDCLASSEX wcex; WNDCLASSEX wcex;
ATOM Ret;
if (!hPrevInstance)
{
wcex.cbSize = sizeof(WNDCLASSEX); wcex.cbSize = sizeof(WNDCLASSEX);
wcex.style = 0; wcex.style = 0;
wcex.lpfnWndProc = EmptyWindowProc; wcex.lpfnWndProc = EmptyWindowProc;
wcex.cbClsExtra = 0; wcex.cbClsExtra = 0;
@ -323,12 +319,8 @@ ATOM RegisterBlankClass(HINSTANCE hInstance, HINSTANCE hPrevInstance)
wcex.lpszMenuName = 0; wcex.lpszMenuName = 0;
wcex.lpszClassName = rundll32_wclass; wcex.lpszClassName = rundll32_wclass;
wcex.hIconSm = 0; wcex.hIconSm = 0;
}
Ret = RegisterClassEx(&wcex); return (RegisterClassEx(&wcex) != (ATOM)0);
if (!Ret) return FALSE;
return Ret;
} }
int WINAPI _tWinMain( int WINAPI _tWinMain(