13 lines
401 B
C++
13 lines
401 B
C++
#include <common/windows.hpp>
|
|
#include <splitter/mainfrm.hpp>
|
|
#include <splitter/splitter.hpp>
|
|
|
|
int PASCAL WinMain(HINSTANCE /*hInstance*/,HINSTANCE /*hPrevInstance*/,LPSTR /*lpszCmdLine*/,int /*nCmdShow*/)
|
|
{
|
|
MainFrame frameWindow;
|
|
|
|
frameWindow.createWindow("NNTP",String(STRING_SPLITTER)+String(" ")+String(STRING_VERSION),"mainMenu","NNTP");
|
|
return ((FrameWindow&)frameWindow).messageLoop();
|
|
}
|
|
|