This file is indexed.

/usr/x86_64-w64-mingw32/include/wdstptmgmt.h is in mingw-w64-x86-64-dev 2.0.3-1.

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
/**
 * This file has no copyright assigned and is placed in the Public Domain.
 * This file is part of the w64 mingw-runtime package.
 * No warranty is given; refer to the file DISCLAIMER.PD within this package.
 */

#ifndef _INC_WDSTPTMGMT
#define _INC_WDSTPTMGMT
#if (_WIN32_WINNT >= 0x0600)

#ifdef __cplusplus
extern "C" {
#endif

typedef enum _WDSTRANSPORT_DIAGNOSTICS_COMPONENT_FLAGS {
  WdsTptDiagnosticsComponentPxe           = 1,
  WdsTptDiagnosticsComponentTftp          = 2,
  WdsTptDiagnosticsComponentImageServer   = 4,
  WdsTptDiagnosticsComponentMulticast     = 8 
} WDSTRANSPORT_DIAGNOSTICS_COMPONENT_FLAGS;

typedef enum _WDSTRANSPORT_DISCONNECT_TYPE {
  WdsTptDisconnectUnknown    = 0,
  WdsTptDisconnectFallback   = 1,
  WdsTptDisconnectAbort      = 2 
} WDSTRANSPORT_DISCONNECT_TYPE;

typedef enum _WDSTRANSPORT_FEATURE_FLAGS {
  WdsTptFeatureAdminPack          = 1,
  WdsTptFeatureTransportServer    = 2,
  WdsTptFeatureDeploymentServer   = 4 
} WDSTRANSPORT_FEATURE_FLAGS;

typedef enum _WDSTRANSPORT_IP_ADDRESS_SOURCE_TYPE {
  WdsTptIpAddressSourceUnknown   = 0,
  WdsTptIpAddressSourceDhcp      = 1,
  WdsTptIpAddressSourceRange     = 2 
} WDSTRANSPORT_IP_ADDRESS_SOURCE_TYPE;

typedef enum _WDSTRANSPORT_IP_ADDRESS_TYPE {
  WdsTptIpAddressUnknown   = 0,
  WdsTptIpAddressIpv4      = 1,
  WdsTptIpAddressIpv6      = 2 
} WDSTRANSPORT_IP_ADDRESS_TYPE;

typedef enum _WDSTRANSPORT_NAMESPACE_TYPE {
  WdsTptNamespaceTypeUnknown                    = 0,
  WdsTptNamespaceTypeAutoCast                   = 1,
  WdsTptNamespaceTypeScheduledCastManualStart   = 2,
  WdsTptNamespaceTypeScheduledCastAutoStart     = 3 
} WDSTRANSPORT_NAMESPACE_TYPE;

typedef enum _WDSTRANSPORT_NETWORK_PROFILE_TYPE {
  WdsTptNetworkProfileUnknown   = 0,
  WdsTptNetworkProfileCustom    = 1,
  WdsTptNetworkProfile10Mbps    = 2,
  WdsTptNetworkProfile100Mbps   = 3,
  WdsTptNetworkProfile1Gbps     = 4 
} WDSTRANSPORT_NETWORK_PROFILE_TYPE;

typedef enum _WDSTRANSPORT_PROTOCOL_FLAGS {
  WdsTptProtocolUnicast     = 1,
  WdsTptProtocolMulticast   = 2 
} WDSTRANSPORT_PROTOCOL_FLAGS;

typedef enum _WDSTRANSPORT_SERVICE_NOTIFICATION {
  WdsTptServiceNotifyUnknown        = 0,
  WdsTptServiceNotifyReadSettings   = 1 
} WDSTRANSPORT_SERVICE_NOTIFICATION;

#ifdef __cplusplus
}
#endi
#endif /*(_WIN32_WINNT >= 0x0600)*/
#endif /*_INC_WDSTPTMGMT*/