tv_rename/windows/gui.cpp
2020-02-25 16:11:25 +01:00

10 lines
274 B
C++

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