Plugin.h
////////////////////////////////////////////////////////////////////////////////
/////////////////////////////// PROCESS CONTROL ////////////////////////////////
// Parameter stepmode in call to Go().
#define STEP_SAME 0 // Same action as on previous call
#define STEP_RUN 1 // Run program
#define STEP_OVER 2 // Step over
#define STEP_IN 3 // Step in
#define STEP_SKIP 4 // Skip sequence
typedef enum t_status // Thread/process status
{
STAT_NONE = 0, // Thread/process is empty
STAT_STOPPED, // Thread/process suspended
STAT_EVENT, // Processing debug event, process paused
STAT_RUNNING, // Thread/process running
STAT_FINISHED, // Process finished
STAT_CLOSING // Process is requested to terminate
} t_status;
extc t_status cdecl Getstatus( void );
extc int cdecl Go( ulong threadid, ulong tilladdr, int stepmode,
int givechance, int backupregs );