mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 04:13:34 +00:00
- revert r32389. It's both useless and incorrect.
- thanks to shadowflare for noticing svn path=/trunk/; revision=33383
This commit is contained in:
@@ -303,32 +303,24 @@ LRESULT CALLBACK EmptyWindowProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lPa
|
||||
}
|
||||
|
||||
// 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;
|
||||
ATOM Ret;
|
||||
|
||||
if (!hPrevInstance)
|
||||
{
|
||||
wcex.cbSize = sizeof(WNDCLASSEX);
|
||||
wcex.cbSize = sizeof(WNDCLASSEX);
|
||||
wcex.style = 0;
|
||||
wcex.lpfnWndProc = EmptyWindowProc;
|
||||
wcex.cbClsExtra = 0;
|
||||
wcex.cbWndExtra = 0;
|
||||
wcex.hInstance = hInstance;
|
||||
wcex.hIcon = 0;
|
||||
wcex.hCursor = 0;
|
||||
wcex.hbrBackground = 0;
|
||||
wcex.lpszMenuName = 0;
|
||||
wcex.lpszClassName = rundll32_wclass;
|
||||
wcex.hIconSm = 0;
|
||||
|
||||
wcex.style = 0;
|
||||
wcex.lpfnWndProc = EmptyWindowProc;
|
||||
wcex.cbClsExtra = 0;
|
||||
wcex.cbWndExtra = 0;
|
||||
wcex.hInstance = hInstance;
|
||||
wcex.hIcon = 0;
|
||||
wcex.hCursor = 0;
|
||||
wcex.hbrBackground = 0;
|
||||
wcex.lpszMenuName = 0;
|
||||
wcex.lpszClassName = rundll32_wclass;
|
||||
wcex.hIconSm = 0;
|
||||
}
|
||||
|
||||
Ret = RegisterClassEx(&wcex);
|
||||
if (!Ret) return FALSE;
|
||||
|
||||
return Ret;
|
||||
return (RegisterClassEx(&wcex) != (ATOM)0);
|
||||
}
|
||||
|
||||
int WINAPI _tWinMain(
|
||||
|
||||
Reference in New Issue
Block a user