tv_rename/windows/gui.cpp
2020-02-25 17:26:30 +01:00

11 lines
295 B
C++

#include "gui_functions.hpp"
#include "mainwindow.hpp"
int WINAPI wWinMain( HINSTANCE hInstance, HINSTANCE hPrevInstance,
PWSTR szCmdLine, int nCmdShow ) {
registerWindowClasses( hInstance );
MainWindow mw( hInstance, nCmdShow );
mw.mainLoop();
return 0;
}