tv_rename/windows/gui.cpp

12 lines
316 B
C++
Raw Normal View History

#include <windows.h>
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;
}