This file is indexed.

/usr/include/x86_64-linux-gnu/freerdp/constants.h is in libfreerdp-dev 1.1.0~git20140921.1.440916e+dfsg1-15ubuntu1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/**
 * FreeRDP: A Remote Desktop Protocol Implementation
 * 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.
 */

#ifndef FREERDP_CONSTANTS_H
#define FREERDP_CONSTANTS_H

/**
 * Codec IDs
 */
enum RDP_CODEC_ID
{
	RDP_CODEC_ID_NONE = 0x00,
	RDP_CODEC_ID_NSCODEC = 0x01,
	RDP_CODEC_ID_JPEG = 0x02,
	RDP_CODEC_ID_REMOTEFX = 0x03,
	RDP_CODEC_ID_IMAGE_REMOTEFX = 0x04
};

/**
 * Static Virtual Channel Flags
 */
enum RDP_SVC_CHANNEL_FLAG
{
	CHANNEL_FLAG_MIDDLE = 0,
	CHANNEL_FLAG_FIRST = 0x01,
	CHANNEL_FLAG_LAST = 0x02,
	CHANNEL_FLAG_ONLY = (CHANNEL_FLAG_FIRST | CHANNEL_FLAG_LAST),
	CHANNEL_FLAG_SHOW_PROTOCOL = 0x10,
	CHANNEL_FLAG_SUSPEND = 0x20,
	CHANNEL_FLAG_RESUME = 0x40,
	CHANNEL_FLAG_FAIL = 0x100
};

/**
 * Static Virtual Channel Events
 */
enum RDP_SVC_CHANNEL_EVENT
{
	CHANNEL_EVENT_INITIALIZED = 0,
	CHANNEL_EVENT_CONNECTED = 1,
	CHANNEL_EVENT_V1_CONNECTED = 2,
	CHANNEL_EVENT_DISCONNECTED = 3,
	CHANNEL_EVENT_TERMINATED = 4,
	CHANNEL_EVENT_DATA_RECEIVED = 10,
	CHANNEL_EVENT_WRITE_COMPLETE = 11,
	CHANNEL_EVENT_WRITE_CANCELLED = 12,
	CHANNEL_EVENT_USER = 1000
};

/**
 * Pixel format
 */
enum RDP_PIXEL_FORMAT
{
	RDP_PIXEL_FORMAT_B8G8R8A8,
	RDP_PIXEL_FORMAT_R8G8B8A8,
	RDP_PIXEL_FORMAT_B8G8R8,
	RDP_PIXEL_FORMAT_R8G8B8,
	RDP_PIXEL_FORMAT_B5G6R5_LE,
	RDP_PIXEL_FORMAT_R5G6B5_LE,
	RDP_PIXEL_FORMAT_P4_PLANER,
	RDP_PIXEL_FORMAT_P8
};
typedef enum RDP_PIXEL_FORMAT RDP_PIXEL_FORMAT;

/**
 * Virtual Channel Constants
 */
#define CHANNEL_CHUNK_LENGTH 1600

/**
 * CPU Optimization flags
 */
#define CPU_SSE2			0x1

/**
 * OSMajorType
 */
#define OSMAJORTYPE_UNSPECIFIED			0x0000
#define OSMAJORTYPE_WINDOWS			0x0001
#define OSMAJORTYPE_OS2				0x0002
#define OSMAJORTYPE_MACINTOSH			0x0003
#define OSMAJORTYPE_UNIX			0x0004

/**
 * OSMinorType
 */
#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

#endif /* FREERDP_CONSTANTS_H */