cheat-engine/Cheat Engine/ceserver/threads.h
2019-12-19 17:49:30 +01:00

20 lines
397 B
C
Executable file

/*
* treads.h
*
* Created on: Jul 13, 2013
* Author: eric
*/
#ifndef TREADS_H_
#define TREADS_H_
#include <sys/queue.h>
#include "api.h"
void InitializeProcessThreadlist(PProcessData p);
void AddThreadToProcess(PProcessData p, PThreadData threaddata);
int RemoveThreadFromProcess(PProcessData p, int tid);
PThreadData GetThreadData(PProcessData p, int tid);
#endif /* TREADS_H_ */