tv_rename/windows/gui.cpp

10 lines
274 B
C++
Raw Normal View History

2020-02-25 15:11:25 +00:00
#include "mainwindow.hpp"
#include "gui_functions.hpp"
int WINAPI wWinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance, PWSTR szCmdLine, int nCmdShow ) {
registerWindowClasses( hInstance );
MainWindow mw( hInstance, nCmdShow );
mw.mainLoop();
return 0;
}