This file is indexed.

/usr/i686-w64-mingw32/include/scrnsave.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
64
65
66
67
68
69
70
/**
 * 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_SCRNSAVE
#define _INC_SCRNSAVE

#include <pshpack1.h>

#ifdef __cplusplus
extern "C" {
#endif

#define IDS_DESCRIPTION 1

#define ID_APP 100
#define DLG_SCRNSAVECONFIGURE 2003

#define idsIsPassword 1000
#define idsIniFile 1001
#define idsScreenSaver 1002
#define idsPassword 1003
#define idsDifferentPW 1004
#define idsChangePW 1005
#define idsBadOldPW 1006
#define idsAppName 1007
#define idsNoHelpMemory 1008
#define idsHelpFile 1009
#define idsDefKeyword 1010

#if defined(UNICODE)
  LRESULT WINAPI ScreenSaverProcW(HWND hWnd,UINT message,WPARAM wParam,LPARAM lParam);
#define ScreenSaverProc ScreenSaverProcW
#else
  LRESULT WINAPI ScreenSaverProc(HWND hWnd,UINT message,WPARAM wParam,LPARAM lParam);
#endif

  LRESULT WINAPI DefScreenSaverProc(HWND hWnd,UINT msg,WPARAM wParam,LPARAM lParam);
  WINBOOL WINAPI ScreenSaverConfigureDialog(HWND hDlg,UINT message,WPARAM wParam,LPARAM lParam);
  WINBOOL WINAPI RegisterDialogClasses(HANDLE hInst);

#define WS_GT (WS_GROUP | WS_TABSTOP)

#define MAXFILELEN 13
#define TITLEBARNAMELEN 40
#define APPNAMEBUFFERLEN 40
#define BUFFLEN 255

  extern HINSTANCE hMainInstance;
  extern HWND hMainWindow;
  extern WINBOOL fChildPreview;
  extern TCHAR szName[TITLEBARNAMELEN];
  extern TCHAR szAppName[APPNAMEBUFFERLEN];
  extern TCHAR szIniFile[MAXFILELEN];
  extern TCHAR szScreenSaver[22];
  extern TCHAR szHelpFile[MAXFILELEN];
  extern TCHAR szNoHelpMemory[BUFFLEN];
  extern UINT MyHelpMessage;

#define SCRM_VERIFYPW WM_APP

  void WINAPI ScreenSaverChangePassword(HWND hParent);

#ifdef __cplusplus
}
#endif

#include <poppack.h>
#endif