mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-05-28 15:34:33 +00:00
14 lines
269 B
C++
14 lines
269 B
C++
#ifndef __FENNIX_KERNEL_CRASH_HANDELR_H__
|
|
#define __FENNIX_KERNEL_CRASH_HANDELR_H__
|
|
|
|
#include <types.h>
|
|
#include <cpu.hpp>
|
|
|
|
namespace CrashHandler
|
|
{
|
|
void EHPrint(const char *Format, ...);
|
|
void Handle(void *Data);
|
|
}
|
|
|
|
#endif // !__FENNIX_KERNEL_CRASH_HANDELR_H__
|