This file is indexed.

/usr/i686-w64-mingw32/include/napprotocol.h is in mingw-w64-i686-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
/**
 * 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_NAPTYPES
#define _INC_NAPTYPES

#if (_WIN32_WINNT >= 0x0600)

typedef enum tagSoHAttributeType {
  sohAttributeTypeSystemHealthId           = 2,
  sohAttributeTypeIpv4FixupServers         = 3,
  sohAttributeTypeComplianceResultCodes    = 4,
  sohAttributeTypeTimeOfLastUpdate         = 5,
  sohAttributeTypeClientId                 = 6,
  sohAttributeTypeVendorSpecific           = 7,
  sohAttributeTypeHealthClass              = 8,
  sohAttributeTypeSoftwareVersion          = 9,
  sohAttributeTypeProductName              = 10,
  sohAttributeTypeHealthClassStatus        = 11,
  sohAttributeTypeSoHGenerationTime        = 12,
  sohAttributeTypeErrorCodes               = 13,
  sohAttributeTypeFailureCategory          = 14,
  sohAttributeTypeIpv6FixupServers         = 15,
  sohAttributeTypeExtendedIsolationState   = 16
} SoHAttributeType;

typedef union tagSoHAttributeValue {
  SystemHealthEntityId     idVal;
  struct tagIpv4Addresses {
    UINT16 count;
    Ipv4Address *addresses;
  } v4AddressesVal;
  struct tagIpv6Addresses {
    UINT16 count;
    Ipv6Address *addresses;
  } v6AddressesVal;
  ResultCodes              codesVal;
  FILETIME                 dateTimeVal;
  struct tagVendorSpecific {
    UINT32 vendorId;
    UINT16 size;
    BYTE *vendorSpecificData;
  } vendorSpecificVal;
  UINT8                    uint8Val;
  struct tagOctetString {
    UINT16 size;
    BYTE *data;
  } octetStringVal;
}SoHAttributeValue;

typedef enum tagHealthClassValue {
  healthClassFirewall         = 0,
  healthClassPatchLevel       = 1,
  healthClassAntiVirus        = 2,
  healthClassCriticalUpdate   = 3,
  healthClassReserved         = 128
} HealthClassValue;

#endif /*(_WIN32_WINNT >= 0x0600)*/

#endif /* _INC_NAPTYPES */