mirror of
https://github.com/cheat-engine/cheat-engine
synced 2026-08-15 02:26:08 -04:00
20 lines
397 B
C
Executable file
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_ */
|