Skip to content
Snippets Groups Projects
Commit 30453bc1 authored by Olivier F. R. Dierick's avatar Olivier F. R. Dierick Committed by Michael Stefaniuc
Browse files

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

parent ca227f47
No related branches found
No related tags found
No related merge requests found
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment