Files
Work/nntp/MAIN.CPP
2024-08-07 09:16:27 -04:00

13 lines
389 B
C++

#include <nntp/mainfrm.hpp>
#include <nntp/resource.hpp>
#include <yproxy/ydecode.hpp>
int PASCAL WinMain(HINSTANCE /*hInstance*/,HINSTANCE /*hPrevInstance*/,LPSTR /*lpszCmdLine*/,int /*nCmdShow*/)
{
MainFrame frameWindow;
frameWindow.createWindow("NNTP",String(STRING_NNTP)+String(" ")+String(STRING_VERSION),"mainMenu","NNTP");
return ((FrameWindow&)frameWindow).messageLoop();
}