tv_rename/windows/gui.cpp

11 lines
295 B
C++
Raw Normal View History

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