reactos/base/applications/utilman/umandlg/resource.h
George Bișoc 2c80432268
[UTILMAN] Use the ShellAboutW API routine to display the about dialog (#2743)
In addition to that, add the missing function prototypes in the DLL dialog header of Utilman, add missing IN/OUT annotations and remove CheckUtilityState() prototype which is barely used (it's not implemented either).
2020-05-07 13:01:36 +02:00

48 lines
1.4 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
/* About resource strings */
#define IDS_APP_NAME 700
#define IDS_AUTHORS 701
/* Main dialog resource */
#define IDD_MAIN_DIALOG 1000