mirror of
https://github.com/cheat-engine/cheat-engine
synced 2026-08-15 02:26:08 -04:00
split up ultimap2 from dbk (in case signing dbk fails ultimap will keep working) fixed the processwatcher bsod'ing you if you have multiple CE's open fixed the ss segment limit in dbvm offload (not that it was used)
23 lines
No EOL
570 B
C
23 lines
No EOL
570 B
C
#ifndef THREADS_H
|
|
#define THREADS_H
|
|
|
|
|
|
#include <ntifs.h>
|
|
#include <windef.h>
|
|
#include "DBKFunc.h"
|
|
|
|
|
|
void Ignore(PKAPC Apc, PKNORMAL_ROUTINE NormalRoutine, PVOID NormalContext, PVOID SystemArgument1, PVOID SystemArgument2);
|
|
void SuspendThreadAPCRoutine(PVOID arg1, PVOID arg2, PVOID arg3);
|
|
|
|
void DBKSuspendThread(ULONG ThreadID);
|
|
void DBKResumeThread(ULONG ThreadID);
|
|
|
|
void DBKResumeProcess(ULONG ProcessID);
|
|
void DBKSuspendProcess(ULONG ProcessID);
|
|
|
|
|
|
|
|
//NTSTATUS NTAPI DBKGetContextThread(IN PETHREAD Thread, IN OUT PCONTEXT ThreadContext);
|
|
|
|
#endif |