2025-04-27 07:49:33 -04:00

71 lines
1017 B
C

#ifndef _BUGCHECK_H_INCLUDED_
#define _BUGCHECK_H_INCLUDED_
/////////////////////////////////////////////////////////////////////
////////////////////////////////////////////////// Bugcheck functions
/////////////////////////////////////////////////////////////////////
VOID
BgChkForceCustomBugcheck (
PVOID
);
VOID
BgChkProcessHasLockedPages (
PVOID
);
VOID
BgChkNoMoreSystemPtes (
PVOID
);
VOID
BgChkBadPoolHeader (
PVOID
);
VOID
BgChkDriverCorruptedSystemPtes (
PVOID
);
VOID
BgChkDriverCorruptedExPool (
PVOID
);
VOID
BgChkDriverCorruptedMmPool (
PVOID
);
VOID
BgChkIrqlNotLessOrEqual (
PVOID
);
VOID
BgChkPageFaultBeyondEndOfAllocation (
PVOID
);
VOID
BgChkDriverVerifierDetectedViolation (
PVOID
);
VOID BgChkCorruptSystemPtes(
PVOID
);
VOID
BgChkHangCurrentProcessor (
PVOID
);
#endif // #ifndef _BUGCHECK_H_INCLUDED_