mirror of
https://github.com/Cracked5pider/Ekko/
synced 2026-06-06 15:34:27 +00:00
12 lines
263 B
C
12 lines
263 B
C
#ifndef EKKO_COMMON_H
|
|
#define EKKO_COMMON_H
|
|
|
|
#include <windows.h>
|
|
#include <stdio.h>
|
|
|
|
#define NT_SUCCESS(Status) ((NTSTATUS)(Status) >= 0)
|
|
#define NtCurrentThread() ( ( HANDLE ) ( LONG_PTR ) -2 )
|
|
#define NtCurrentProcess() ( ( HANDLE ) ( LONG_PTR ) -1 )
|
|
|
|
#endif
|