This file is indexed.

/usr/i686-w64-mingw32/include/pseh/framebased/internal.h is in mingw-w64-i686-dev 3.1.0-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
 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
/*
	Copyright (c) 2004/2005 KJK::Hyperion

	Permission is hereby granted, free of charge, to any person obtaining a
	copy of this software and associated documentation files (the "Software"),
	to deal in the Software without restriction, including without limitation
	the rights to use, copy, modify, merge, publish, distribute, sublicense,
	and/or sell copies of the Software, and to permit persons to whom the
	Software is furnished to do so, subject to the following conditions:

	The above copyright notice and this permission notice shall be included in
	all copies or substantial portions of the Software.

	THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
	IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
	FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
	AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
	LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
	FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
	DEALINGS IN THE SOFTWARE.
*/

#ifndef KJK_PSEH_FRAMEBASED_INTERNAL_H_
#define KJK_PSEH_FRAMEBASED_INTERNAL_H_

#define _SEH_DO_TRACE_ENTER_LEAVE      (1 <<  0)
#define _SEH_DO_TRACE_EXCEPTION_RECORD (1 <<  1)
#define _SEH_DO_TRACE_CONTEXT          (1 <<  2)
#define _SEH_DO_TRACE_UNWIND           (1 <<  3)
#define _SEH_DO_TRACE_TRYLEVEL         (1 <<  4)
#define _SEH_DO_TRACE_CALL_FILTER      (1 <<  5)
#define _SEH_DO_TRACE_FILTER           (1 <<  6)
#define _SEH_DO_TRACE_CALL_HANDLER     (1 <<  7)
#define _SEH_DO_TRACE_CALL_FINALLY     (1 <<  8)

#define _SEH_DO_TRACE_NONE (0)
#define _SEH_DO_TRACE_ALL (-1)

#ifndef _SEH_DO_DEFAULT_TRACING
#define _SEH_DO_DEFAULT_TRACING _SEH_DO_TRACE_NONE
#endif

struct _EXCEPTION_RECORD;
struct _EXCEPTION_POINTERS;
struct _CONTEXT;

typedef int (__cdecl * _SEHFrameHandler_t)
(
	struct _EXCEPTION_RECORD *,
	void *,
	struct _CONTEXT *,
	void *
);

typedef struct __SEHRegistration
{
	struct __SEHRegistration * SER_Prev;
	_SEHFrameHandler_t SER_Handler;
}
_SEHRegistration_t;

struct __SEHPortableFrame;
struct __SEHPortableTryLevel;

typedef long (__stdcall * _SEHFilter_t)
(
	struct _EXCEPTION_POINTERS *,
	struct __SEHPortableFrame *
);

typedef void (__stdcall * _SEHHandler_t)
(
	struct __SEHPortableTryLevel *
);

typedef void (__stdcall * _SEHFinally_t)
(
	struct __SEHPortableFrame *
);

typedef struct __SEHHandlers
{
	_SEHFilter_t SH_Filter;
	_SEHFinally_t SH_Finally;
}
_SEHHandlers_t;

typedef struct __SEHPortableTryLevel
{
	struct __SEHPortableTryLevel * volatile SPT_Next;
	volatile _SEHHandlers_t SPT_Handlers;
}
_SEHPortableTryLevel_t;

typedef struct __SEHPortableFrame
{
	_SEHRegistration_t SPF_Registration;
	unsigned long SPF_Code;
	volatile _SEHHandler_t SPF_Handler;
	_SEHPortableTryLevel_t * volatile SPF_TopTryLevel;
	volatile int SPF_Tracing;
}
_SEHPortableFrame_t;

#ifdef __cplusplus
extern "C"
{
#endif

extern void __stdcall _SEHEnterFrame_s(_SEHPortableFrame_t *);
extern void __stdcall _SEHLeaveFrame_s(void);
extern void __stdcall _SEHReturn_s(void);

#if !defined(_SEH_NO_FASTCALL)
# ifdef _M_IX86
#  define _SEH_FASTCALL __fastcall
# else
#  define _SEH_FASTCALL __stdcall
# endif

extern void _SEH_FASTCALL _SEHEnterFrame_f(_SEHPortableFrame_t *);
extern void _SEH_FASTCALL _SEHLeaveFrame_f(void);
extern void _SEH_FASTCALL _SEHReturn_f(void);

# define _SEHEnterFrame _SEHEnterFrame_f
# define _SEHLeaveFrame _SEHLeaveFrame_f
# define _SEHReturn     _SEHReturn_f
#else
# define _SEHEnterFrame _SEHEnterFrame_s
# define _SEHLeaveFrame _SEHLeaveFrame_s
# define _SEHReturn     _SEHReturn_s
#endif

#ifdef __cplusplus
}
#endif

#endif

/* EOF */