freerdp/constants: Conform osMinorType values to documentation

The OSMINORTYPE_NATIVE_WAYLAND value does not officially exist in
[MS-RDPBCGR].
Its value also is the one for Windows RT.

Fix this situation, by introducing the os minor type
OSMINORTYPE_WINDOWS_RT with its correct value and by choosing a
different value for OSMINORTYPE_NATIVE_WAYLAND, as that value does not
exist officially.
This commit is contained in:
Pascal Nowack 2022-03-29 07:01:57 +02:00 committed by akallabeth
parent 29fcfdce03
commit 5b5582c9d5

View File

@ -58,6 +58,8 @@ enum RDP_CODEC_ID
#define OSMINORTYPE_MACINTOSH 0x0006
#define OSMINORTYPE_NATIVE_XSERVER 0x0007
#define OSMINORTYPE_PSEUDO_XSERVER 0x0008
#define OSMINORTYPE_NATIVE_WAYLAND 0x0009
#define OSMINORTYPE_WINDOWS_RT 0x0009
/* As of 2022-03-29 the following does not exist officially in [MS-RDPBCGR] */
#define OSMINORTYPE_NATIVE_WAYLAND (0xFFFF - 1)
#endif /* FREERDP_CONSTANTS_H */