mirror of
https://github.com/reactos/reactos.git
synced 2025-05-17 16:27:00 +00:00

* [RAPPS] now command-line option supports begin with both / and - * [RAPPS] Add help command with /? * [RAPPS] add /find command * [RAPPS] add /info option * [RAPPS] add copyright and contact e-mail
17 lines
476 B
C
17 lines
476 B
C
#pragma once
|
|
|
|
#include "available.h"
|
|
|
|
#include <windef.h>
|
|
#include <atlsimpcoll.h>
|
|
|
|
// Settings dialog (settingsdlg.cpp)
|
|
VOID CreateSettingsDlg(HWND hwnd);
|
|
|
|
//Main window
|
|
VOID MainWindowLoop(INT nShowCmd);
|
|
|
|
// Download dialogs
|
|
VOID DownloadApplicationsDB(LPCWSTR lpUrl, BOOL IsOfficial);
|
|
BOOL DownloadApplication(CAvailableApplicationInfo* pAppInfo, BOOL bIsModal);
|
|
BOOL DownloadListOfApplications(const ATL::CSimpleArray<CAvailableApplicationInfo>& AppsList, BOOL bIsModal);
|