14 lines
305 B
C++
14 lines
305 B
C++
#include <common/windows.hpp>
|
|
#include <browse/mainfrm.hpp>
|
|
|
|
int PASCAL WinMain(HINSTANCE /*hInstance*/,HINSTANCE /*hPrevInstance*/,LPSTR /*lpszCmdLine*/,int /*nCmdShow*/)
|
|
{
|
|
MainFrame mainFrame;
|
|
mainFrame.createWindow("PROTO","Proto","mainMenu","paint");
|
|
mainFrame.messageLoop();
|
|
return false;
|
|
}
|
|
|
|
|
|
|