mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-12 12:26:02 +02:00
+ Added acces violation reasons
git-svn-id: trunk@5168 -
This commit is contained in:
parent
ab9936a1ce
commit
53e7596e3d
@ -5390,6 +5390,16 @@ Const
|
|||||||
DECLARE_HANDLE(HANDLE);
|
DECLARE_HANDLE(HANDLE);
|
||||||
#endif
|
#endif
|
||||||
*)
|
*)
|
||||||
|
|
||||||
|
|
||||||
|
const
|
||||||
|
EXCEPTION_READ_FAULT = 0; // Access violation was caused by a read
|
||||||
|
EXCEPTION_WRITE_FAULT = 1; // Access violation was caused by a write
|
||||||
|
{$ifdef cpuia64}
|
||||||
|
EXCEPTION_EXECUTE_FAULT = 2; // Access violation was caused by an instruction fetch
|
||||||
|
{$else}
|
||||||
|
EXCEPTION_EXECUTE_FAULT = 8;
|
||||||
|
{$endif}
|
||||||
|
|
||||||
{$ifdef cpupowerpc32}
|
{$ifdef cpupowerpc32}
|
||||||
{ ppc }
|
{ ppc }
|
||||||
|
Loading…
Reference in New Issue
Block a user