[USER32] Add support for navigating a group of radio buttons using a keyboard.
[reactos.git] / win32ss / user / user32 / include / resource.h
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS user32.dll
4 * FILE: win32ss/user/user32/include/resource.h
5 * PURPOSE: Definition of resource ids
6 */
7
8 #pragma once
9
10 #define IDS_ERROR (2)
11 #define IDS_NOT_RESPONDING (3)
12 #define IDS_ASK_TERMINATE (4)
13 #define IDS_HUNG_UP_TITLE (5)
14
15 /*
16 * Button names IDs.
17 *
18 * The low value must be equal to the corresponding
19 * IDOK ... IDCONTINUE values, minus one.
20 */
21 #define IDS_OK (800)
22 #define IDS_CANCEL (801)
23 #define IDS_ABORT (802)
24 #define IDS_RETRY (803)
25 #define IDS_IGNORE (804)
26 #define IDS_YES (805)
27 #define IDS_NO (806)
28 #define IDS_CLOSE (807)
29 #define IDS_HELP (808)
30 #define IDS_TRYAGAIN (809)
31 #define IDS_CONTINUE (810)
32