mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 13:23:04 +00:00
Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers into modules, and delete rossubsys.
This commit is contained in:
parent
b94e2d8ca0
commit
c2c66aff7d
24198 changed files with 0 additions and 37285 deletions
39
base/applications/rapps/include/dialogs.h
Normal file
39
base/applications/rapps/include/dialogs.h
Normal file
|
@ -0,0 +1,39 @@
|
|||
#pragma once
|
||||
|
||||
#include "available.h"
|
||||
|
||||
#include <windef.h>
|
||||
#include <atlsimpcoll.h>
|
||||
|
||||
// Download dialog (loaddlg.cpp)
|
||||
class CDowloadingAppsListView;
|
||||
struct DownloadInfo;
|
||||
|
||||
class CDownloadManager
|
||||
{
|
||||
static ATL::CSimpleArray<DownloadInfo> AppsToInstallList;
|
||||
static CDowloadingAppsListView DownloadsListView;
|
||||
|
||||
static VOID Download(const DownloadInfo& DLInfo, BOOL bIsModal = FALSE);
|
||||
|
||||
public:
|
||||
static INT_PTR CALLBACK DownloadDlgProc(HWND Dlg, UINT uMsg, WPARAM wParam, LPARAM lParam);
|
||||
static LRESULT CALLBACK DownloadProgressProc(HWND hWnd,
|
||||
UINT uMsg,
|
||||
WPARAM wParam,
|
||||
LPARAM lParam,
|
||||
UINT_PTR uIdSubclass,
|
||||
DWORD_PTR dwRefData);
|
||||
|
||||
static DWORD WINAPI ThreadFunc(LPVOID Context);
|
||||
static BOOL DownloadListOfApplications(const ATL::CSimpleArray<CAvailableApplicationInfo*>& AppsList, BOOL bIsModal = FALSE);
|
||||
static BOOL DownloadApplication(CAvailableApplicationInfo* pAppInfo, BOOL bIsModal = FALSE);
|
||||
static VOID DownloadApplicationsDB(LPCWSTR lpUrl);
|
||||
static VOID LaunchDownloadDialog(BOOL);
|
||||
};
|
||||
|
||||
// Settings dialog (settingsdlg.cpp)
|
||||
VOID CreateSettingsDlg(HWND hwnd);
|
||||
|
||||
// About dialog (aboutdlg.cpp)
|
||||
VOID ShowAboutDialog();
|
Loading…
Add table
Add a link
Reference in a new issue