mirror of
https://github.com/zimnyaa/PhaseDive
synced 2026-06-08 18:36:28 +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
|