reactos/base/applications/utilman/umandlg/resource.h
Bișoc George 975d417b34
[UTILMAN] Move most of the code in a library (#2530)
Windows XP and Server 2003 Utility Manager has a dedicated library for the resources and other stuff. Utility Manager is just a simple process that loads it. Hence create a library for the program, UManDlg.dll, and move the resources and other stuff there.

In addition to that, use ExtractIconW to get the icon resource from the program (the DLL doesn't share icons by default) and remove the icon resource from the "About" dialog window. Also change the encoding type of other translation files to UTF-8 (which were previously set with UTF-8 with BOM).
2020-04-17 13:42:47 +03:00

45 lines
1.3 KiB
C

/*
* PROJECT: ReactOS Utility Manager Resources DLL (UManDlg.dll)
* LICENSE: GPL-2.0+ (https://spdx.org/licenses/GPL-2.0+)
* PURPOSE: Resource header file
* COPYRIGHT: Copyright 2019-2020 Bișoc George (fraizeraust99 at gmail dot com)
*/
#pragma once
#define IDC_STATIC -1
/* List box resource */
#define IDC_LISTBOX 60
/* Utility tools name strings */
#define IDS_OSK 100
#define IDS_MAGNIFIER 101
/* Utility state strings */
#define IDS_NOTRUNNING 150
#define IDS_RUNNING 151
/* Groupbox option title */
#define IDC_GROUPBOX 200
#define IDS_GROUPBOX_OPTIONS_TITLE 201
/* Button resources */
#define IDC_START 300
#define IDC_STOP 301
#define IDC_OK 302
#define IDC_CANCEL 303
#define IDC_HELP_TOPICS 304
/* Checkbox resources */
#define IDC_START_LOG_IN 400
#define IDC_START_DESKTOP 401
#define IDC_START_UTILMAN 402
/* System menu (About) resource */
#define IDM_ABOUT 600
/* Main dialog resource */
#define IDD_MAIN_DIALOG 1000
#define IDD_ABOUT_DIALOG 1050