mirror of
https://github.com/reactos/reactos.git
synced 2025-08-06 20:03:07 +00:00
[RAPPS] Move database source URL to settings dialog (#2792)
- Add download source in settings dialog, and apply it when download .cab file - Now user should specify full rappmgr.cab URL - Check if URL is vaild in settings dialog - Move source settings to the end of struct (will refactor settings to one value per option later)
This commit is contained in:
parent
fb2a9bb60d
commit
a21d959e90
31 changed files with 515 additions and 283 deletions
|
@ -1,5 +1,6 @@
|
|||
#pragma once
|
||||
#include <windef.h>
|
||||
#include <wininet.h>
|
||||
|
||||
//TODO: Separate main and settings related definitions
|
||||
struct SETTINGS_INFO
|
||||
|
@ -19,6 +20,9 @@ struct SETTINGS_INFO
|
|||
INT Proxy;
|
||||
WCHAR szProxyServer[MAX_PATH];
|
||||
WCHAR szNoProxyFor[MAX_PATH];
|
||||
/* Software source settings */
|
||||
BOOL bUseSource;
|
||||
WCHAR szSourceURL[INTERNET_MAX_URL_LENGTH];
|
||||
};
|
||||
|
||||
typedef SETTINGS_INFO *PSETTINGS_INFO;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue