mirror of
https://github.com/reactos/reactos.git
synced 2026-06-18 04:56:07 +08:00
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.
22 lines
424 B
C
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);
|