2011-07-03 20:42:35 +04:00
|
|
|
/**
|
2012-10-09 07:02:04 +04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2011-07-03 20:42:35 +04:00
|
|
|
* RDP Constants
|
|
|
|
*
|
|
|
|
* Copyright 2011 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2012-12-14 09:25:48 +04:00
|
|
|
#ifndef FREERDP_CONSTANTS_H
|
|
|
|
#define FREERDP_CONSTANTS_H
|
2011-07-07 07:11:11 +04:00
|
|
|
|
2011-08-09 19:45:55 +04:00
|
|
|
/**
|
|
|
|
* Codec IDs
|
|
|
|
*/
|
|
|
|
enum RDP_CODEC_ID
|
|
|
|
{
|
2013-01-12 17:49:01 +04:00
|
|
|
RDP_CODEC_ID_NONE = 0x00,
|
|
|
|
RDP_CODEC_ID_NSCODEC = 0x01,
|
|
|
|
RDP_CODEC_ID_JPEG = 0x02,
|
2013-02-13 06:25:49 +04:00
|
|
|
RDP_CODEC_ID_REMOTEFX = 0x03,
|
|
|
|
RDP_CODEC_ID_IMAGE_REMOTEFX = 0x04
|
2011-08-09 19:45:55 +04:00
|
|
|
};
|
|
|
|
|
2011-10-29 18:01:50 +04:00
|
|
|
/**
|
|
|
|
* CPU Optimization flags
|
|
|
|
*/
|
2019-11-06 17:24:51 +03:00
|
|
|
#define CPU_SSE2 0x1
|
2011-10-29 18:01:50 +04:00
|
|
|
|
2011-12-24 11:48:11 +04:00
|
|
|
/**
|
|
|
|
* OSMajorType
|
|
|
|
*/
|
2019-11-06 17:24:51 +03:00
|
|
|
#define OSMAJORTYPE_UNSPECIFIED 0x0000
|
|
|
|
#define OSMAJORTYPE_WINDOWS 0x0001
|
|
|
|
#define OSMAJORTYPE_OS2 0x0002
|
|
|
|
#define OSMAJORTYPE_MACINTOSH 0x0003
|
|
|
|
#define OSMAJORTYPE_UNIX 0x0004
|
2022-06-29 15:26:34 +03:00
|
|
|
#define OSMAJORTYPE_IOS 0x0005
|
|
|
|
#define OSMAJORTYPE_OSX 0x0006
|
|
|
|
#define OSMAJORTYPE_ANDROID 0x0007
|
|
|
|
#define OSMAJORTYPE_CHROME_OS 0x0008
|
2011-12-24 11:48:11 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* OSMinorType
|
|
|
|
*/
|
2019-11-06 17:24:51 +03:00
|
|
|
#define OSMINORTYPE_UNSPECIFIED 0x0000
|
|
|
|
#define OSMINORTYPE_WINDOWS_31X 0x0001
|
|
|
|
#define OSMINORTYPE_WINDOWS_95 0x0002
|
|
|
|
#define OSMINORTYPE_WINDOWS_NT 0x0003
|
|
|
|
#define OSMINORTYPE_OS2_V21 0x0004
|
|
|
|
#define OSMINORTYPE_POWER_PC 0x0005
|
|
|
|
#define OSMINORTYPE_MACINTOSH 0x0006
|
|
|
|
#define OSMINORTYPE_NATIVE_XSERVER 0x0007
|
|
|
|
#define OSMINORTYPE_PSEUDO_XSERVER 0x0008
|
2022-03-29 08:01:57 +03:00
|
|
|
#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)
|
2022-12-30 13:25:28 +03:00
|
|
|
#define OSMINORTYPE_NATIVE_SDL (0xFFFF - 2)
|
2011-12-24 11:48:11 +04:00
|
|
|
|
2012-12-14 09:25:48 +04:00
|
|
|
#endif /* FREERDP_CONSTANTS_H */
|