win32u: Implement keyboard auto-repeat using new server request.
[wine.git] / include / regstr.h
blob850d16133a9f2a69ca08e71ac4277dbfa182cea9
1 /*
2 * Win32 registry string defines (see also winnt.h)
4 * Copyright (C) 2000 Andreas Mohr
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
21 #ifndef _INC_REGSTR
22 #define _INC_REGSTR
25 #define REGSTR_PATH_UNINSTALL TEXT("Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall")
26 #define REGSTR_VAL_MAX_HCID_LEN 1024
28 /* DisplayName <= 32 chars in Windows (otherwise not displayed for uninstall) */
29 #define REGSTR_VAL_UNINSTALLER_DISPLAYNAME TEXT("DisplayName")
30 /* UninstallString <= 63 chars in Windows (otherwise problems) */
31 #define REGSTR_VAL_UNINSTALLER_COMMANDLINE TEXT("UninstallString")
33 #define CONFIGFLAG_DISABLED 0x00000001
34 #define CONFIGFLAG_REMOVED 0x00000002
35 #define CONFIGFLAG_MANUAL_INSTALL 0x00000004
36 #define CONFIGFLAG_IGNORE_BOOT_LC 0x00000008
37 #define CONFIGFLAG_NET_BOOT 0x00000010
38 #define CONFIGFLAG_REINSTALL 0x00000020
39 #define CONFIGFLAG_FAILEDINSTALL 0x00000040
40 #define CONFIGFLAG_CANTSTOPACHILD 0x00000080
41 #define CONFIGFLAG_OKREMOVEROM 0x00000100
42 #define CONFIGFLAG_NOREMOVEEXIT 0x00000200
43 #define CONFIGFLAG_FINISH_INSTALL 0x00000400
44 #define CONFIGFLAG_NEEDS_FORCED_CONFIG 0x00000800
45 #define CONFIGFLAG_NETBOOT_CARD 0x00001000
46 #define CONFIGFLAG_PARTIAL_LOG_CONF 0x00002000
47 #define CONFIGFLAG_SUPPRESS_SURPRISE 0x00004000
48 #define CONFIGFLAG_VERIFY_HARDWARE 0x00008000
49 #define CONFIGFLAG_FINISHINSTALL_UI 0x00010000
50 #define CONFIGFLAG_FINISHINSTALL_ACTION 0x00020000
51 #define CONFIGFLAG_BOOT_DEVICE 0x00040000
52 #define CONFIGFLAG_NEEDS_CLASS_CONFIG 0x00080000
54 #endif /* _INC_REGSTR_H */