Files
Work/aladin/Main.cpp
2024-08-07 09:12:07 -04:00

15 lines
450 B
C++

#include <common/windows.hpp>
#include <common/string.hpp>
#include <aladin/divedlg.hpp>
#include <aladin/splash.hpp>
#include <aladin/resource.hpp>
int PASCAL WinMain(HINSTANCE hInstance,HINSTANCE hPrevInstance,LPSTR lpszCmdLine,int nCmdShow)
{
SplashScreen splashScreen("SPLASH",String(STRING_SPLASHURL),String(STRING_APPNAME)+String(" ")+String(STRING_VERSION));
splashScreen.perform();
DiveDlg diveDlg;
diveDlg.perform();
return false;
}