Files
Work/browse/Main.cpp
2024-08-07 09:12:07 -04:00

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;
}