summaryrefslogtreecommitdiffstats
path: root/Src/nu/MainThread.cpp
blob: 520ebc4c07ba817161d0064c5c970f6257892787 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#include "MainThread.h"


LRESULT CALLBACK MarshallProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
{
	switch (message)
	{
	case WM_USER:
		{
			Lambda *lambda = (Lambda *)wParam;
			lambda->Run();
			delete lambda;
			return 0;
		}
	default:
		return DefWindowProc(hWnd, message, wParam, lParam);
	}
	return 0;
}


MainThread::MainThread()
{
	WNDCLASSEX wcex;
	wcex.cbSize = sizeof(WNDCLASSEX);
	wcex.style	= 0;
	wcex.lpfnWndProc	= (WNDPROC)MarshallProc;
	wcex.cbClsExtra	= 0;
	wcex.cbWndExtra	= 0;
	wcex.hInstance	= GetModuleHandle(0);
	wcex.hIcon	= 0;
	wcex.hCursor	= 0;
	wcex.hbrBackground	= 0;
	wcex.lpszMenuName	= 0;
	wcex.lpszClassName	= "MainWindowMarshaller";
	wcex.hIconSm	= 0;
	RegisterClassEx(&wcex);

	mainWindow = CreateWindow( "MainWindowMarshaller", "MainWindowMarshaller", WS_DISABLED, 0, 0, 0, 0, NULL, NULL, GetModuleHandle(0), NULL);
}

MainThread mainThread;