Пример #1
0
int APIENTRY WinMain( HINSTANCE hInstance, HINSTANCE, LPSTR lpCmdLine, int nShowCmd )
{
	WSIZE wSize = { 100, 100, 350, 320 };
	IWindow *WndInterface = GetInterface();

	if(WndInterface)
	{
		WndInterface->CreateWnd(L"Test Title", wSize );
		WndInterface->Run();
		WndInterface->Release();
		UnregisterClass(L"Main_ClAsS", hInstance);
	}

	return TRUE;
}