This commit is contained in:
2024-08-07 09:12:07 -04:00
parent ca445435a0
commit fdfadd5c7e
1021 changed files with 73601 additions and 0 deletions

14
aladin/Main.cpp Normal file
View File

@@ -0,0 +1,14 @@
#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;
}