Files
Whindmar Saksit 8ce870d87b [RAPPS] Added /S switch for silent installs (#8241)
MSI, Inno and NSIS installers are automatically detected (also if they are nested by ExeInZip). Others can specify command line switches in the rapps-db package.
2025-08-29 15:18:55 +02:00

22 lines
424 B
C

#pragma once
#include "appinfo.h"
#include <atlsimpcoll.h>
// Settings dialog (settingsdlg.cpp)
VOID
CreateSettingsDlg(HWND hwnd);
// Download dialogs
enum DOWNLOADAPPFLAGS {
DAF_SILENT = 0x01,
DAF_MODAL = 0x02,
};
VOID
DownloadApplicationsDB(LPCWSTR lpUrl, BOOL IsOfficial);
BOOL
DownloadApplication(CAppInfo *pAppInfo);
BOOL
DownloadListOfApplications(const CAtlList<CAppInfo *> &AppsList, UINT Flags = 0);