Make sure that GetMessagePos and GetMessageTime return sane values
[wine] / include / regstr.h
1 /*
2  *              Win32 registry string defines (see also winnt.h)
3  */
4 #ifndef _INC_REGSTR
5 #define _INC_REGSTR
6
7 #ifdef __cplusplus
8 extern "C" {
9 #endif /* defined(__cplusplus) */
10
11 #define REGSTR_PATH_UNINSTALL                   TEXT("Software\\Microsoft\\Windows\\CurrentVersion\\Uninstall")
12
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")
17
18 #ifdef __cplusplus
19 } /* extern "C" */
20 #endif /* defined(__cplusplus) */
21
22 #endif  /* _INC_REGSTR_H */