Fix typo in OUTLINETEXTMETRIC definition.
[wine.git] / include / regstr.h
blob21f263b6a98a95a8198ffe0ddb7fa7c2a965b11d
1 /*
2 * Win32 registry string defines (see also winnt.h)
3 */
4 #ifndef _INC_REGSTR
5 #define _INC_REGSTR
7 #ifdef __cplusplus
8 extern "C" {
9 #endif /* defined(__cplusplus) */
11 #define REGSTR_PATH_UNINSTALL TEXT("Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall")
13 /* DisplayName <= 32 chars in Windows (otherwise not displayed for uninstall) */
14 #define REGSTR_VAL_UNINSTALLER_DISPLAYNAME TEXT("DisplayName")
15 /* UninstallString <= 63 chars in Windows (otherwise problems) */
16 #define REGSTR_VAL_UNINSTALLER_COMMANDLINE TEXT("UninstallString")
18 #ifdef __cplusplus
19 } /* extern "C" */
20 #endif /* defined(__cplusplus) */
22 #endif /* _INC_REGSTR_H */