mirror of
https://github.com/reactos/reactos.git
synced 2024-11-19 21:48:10 +00:00
a9b1e059f4
* Just rename the 4 new files. Absolutely no other change. * CMakeLists.txt, adapt the filenames * Adapt all includes to make it compile * CApplicationDB->CAppDB * CApplicationInfo->CAppInfo * Follow Mark Jansens good example and antipad the headers
22 lines
437 B
C
22 lines
437 B
C
#pragma once
|
|
|
|
#include "appinfo.h"
|
|
|
|
#include <windef.h>
|
|
#include <atlsimpcoll.h>
|
|
|
|
// Settings dialog (settingsdlg.cpp)
|
|
VOID
|
|
CreateSettingsDlg(HWND hwnd);
|
|
|
|
// Main window
|
|
VOID
|
|
MainWindowLoop(class CAppDB *db, INT nShowCmd);
|
|
|
|
// Download dialogs
|
|
VOID
|
|
DownloadApplicationsDB(LPCWSTR lpUrl, BOOL IsOfficial);
|
|
BOOL
|
|
DownloadApplication(CAppInfo *pAppInfo);
|
|
BOOL
|
|
DownloadListOfApplications(const CAtlList<CAppInfo *> &AppsList, BOOL bIsModal);
|