DumpDVD/DumpDVD/Main.cpp

11 lines
270 B
C++
Raw Permalink Normal View History

2023-03-14 13:36:58 +00:00
#include <iostream>
2023-03-15 06:59:59 +00:00
#include "Gui/MainWindow.hpp"
2023-03-14 13:36:58 +00:00
#ifdef _WIN32
#include <Windows.h>
#endif
int APIENTRY WinMain(HINSTANCE hInst, HINSTANCE hInstPrev, PSTR cmdline, int cmdshow)
{
Li::Gui::MainWindow* mainWindow = new Li::Gui::MainWindow();
delete mainWindow;
}