reactos/reactos/dll/win32/userenv/resources.h
Hermès Bélusca-Maïto c24dcb3ff2 [USERENV]
- Split the huge "InitializeProfiles" function into itself and a helper "CreateStandardProfile", the latter is called to set up the "Default User" and "All Users" profile directories & registry settings.
- Use StringSafe functions where needed.
- Some of the shell registry values (the multimedia ones in particular) and the Fonts folder path, are not set by userenv.dll but are set by shell32.dll when it is registered during 2nd stage setup.

[SHELL32]: The above-mentioned shell reg vals are already there, but few have different translations than the ones that were in userenv. Translators, please review & fix if needed!

[SYSSETUP]: It is syssetup.dll which sets up the 'Program Files' & 'Common Files' directories & registry values at 2nd stage setup, as done on Windows' setup. Move the code that did this from our userenv to syssetup.

svn path=/trunk/; revision=73518
2017-01-10 15:28:49 +00:00

30 lines
755 B
C

/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries
* FILE: dll/win32/userenv/resource.h
* PURPOSE: Resource IDs
* PROGRAMMER: Eric Kohl
*/
#pragma once
#define IDS_PROFILEPATH 1
#define IDS_APPDATA 2
#define IDS_DESKTOP 3
#define IDS_FAVORITES 4
#define IDS_MYDOCUMENTS 5
#define IDS_NETHOOD 6
#define IDS_PRINTHOOD 7
#define IDS_RECENT 8
#define IDS_SENDTO 9
#define IDS_TEMPLATES 10
#define IDS_STARTMENU 11
#define IDS_PROGRAMS 12
#define IDS_STARTUP 13
#define IDS_LOCALSETTINGS 14
#define IDS_LOCALAPPDATA 15
#define IDS_TEMP 16
#define IDS_CACHE 17
#define IDS_HISTORY 18
#define IDS_COOKIES 19