winecfg: Add Downloads and Templates to shell folders UI interface.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=48484
Signed-off-by: Olivier F. R. Dierick <o.dierick@piezo-forte.be>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
feature/deterministic
Olivier F. R. Dierick 2020-02-23 23:49:07 +01:00 committed by Alexandre Julliard
parent b125571a0a
commit 7216da8851
1 changed files with 5 additions and 1 deletions

View File

@ -716,12 +716,16 @@ struct ShellFolderInfo {
char szLinkTarget[FILENAME_MAX]; /* in unix locale */
};
#define CSIDL_DOWNLOADS 0x0047
static struct ShellFolderInfo asfiInfo[] = {
{ CSIDL_DESKTOP, "" },
{ CSIDL_PERSONAL, "" },
{ CSIDL_MYPICTURES, "" },
{ CSIDL_MYMUSIC, "" },
{ CSIDL_MYVIDEO, "" }
{ CSIDL_MYVIDEO, "" },
{ CSIDL_DOWNLOADS, "" },
{ CSIDL_TEMPLATES, "" }
};
static struct ShellFolderInfo *psfiSelected = NULL;