Commit 7216da88 authored by Olivier F. R. Dierick's avatar Olivier F. R. Dierick Committed by Alexandre Julliard

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

parent b125571a
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment