mirror of
https://github.com/daeken/Zookeeper.git
synced 2025-04-02 10:52:54 -04:00
19 lines
426 B
C++
19 lines
426 B
C++
#pragma once
|
|
|
|
#define halt() do { asm("hlt"); } while(0)
|
|
#define NTAPI __attribute__((stdcall))
|
|
|
|
#include <stdint.h>
|
|
#include <stdarg.h>
|
|
|
|
#include "mini-printf.hpp"
|
|
#include "Log.hpp"
|
|
#include "C.hpp"
|
|
#include "../Shared.hpp"
|
|
#include "../xbetypes.hpp"
|
|
#include "XboxKernel/nttypes.hpp"
|
|
#include "TIB.hpp"
|
|
#include "Hypercall.hpp"
|
|
#include "liballoc.hpp"
|
|
#include "XboxKernel/KernelThunk.hpp"
|
|
#include "XboxKernel/Kernel.hpp"
|