mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
17 lines
348 B
C
17 lines
348 B
C
#pragma once
|
|
|
|
#include "appinfo.h"
|
|
|
|
#include <atlsimpcoll.h>
|
|
|
|
// Settings dialog (settingsdlg.cpp)
|
|
VOID
|
|
CreateSettingsDlg(HWND hwnd);
|
|
|
|
// Download dialogs
|
|
VOID
|
|
DownloadApplicationsDB(LPCWSTR lpUrl, BOOL IsOfficial);
|
|
BOOL
|
|
DownloadApplication(CAppInfo *pAppInfo);
|
|
BOOL
|
|
DownloadListOfApplications(const CAtlList<CAppInfo *> &AppsList, BOOL bIsModal);
|