mirror of
https://github.com/reactos/reactos.git
synced 2024-10-31 11:56:26 +00:00
4f0b8d3db0
svn path=/branches/ntvdm/; revision=59241
56 lines
1.7 KiB
C
56 lines
1.7 KiB
C
/*
|
|
* ReactOS kernel
|
|
* Copyright (C) 2004 ReactOS Team
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along
|
|
* with this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*/
|
|
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS system libraries
|
|
* FILE: lib/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_STARTMENU 5
|
|
#define IDS_PROGRAMS 6
|
|
#define IDS_ADMINTOOLS 7
|
|
#define IDS_STARTUP 8
|
|
#define IDS_MYDOCUMENTS 9
|
|
#define IDS_MYPICTURES 10
|
|
#define IDS_MYMUSIC 11
|
|
#define IDS_MYVIDEOS 12
|
|
#define IDS_TEMPLATES 13
|
|
#define IDS_RECENT 14
|
|
#define IDS_SENDTO 15
|
|
#define IDS_PRINTHOOD 16
|
|
#define IDS_NETHOOD 17
|
|
#define IDS_LOCALSETTINGS 18
|
|
#define IDS_LOCALAPPDATA 19
|
|
#define IDS_TEMP 20
|
|
#define IDS_CACHE 21
|
|
#define IDS_HISTORY 22
|
|
#define IDS_COOKIES 23
|
|
#define IDS_PROGRAMFILES 24
|
|
#define IDS_COMMONFILES 25
|
|
|
|
/* EOF */
|