0
0
Fork 0
mirror of https://git.code.sf.net/p/quake/quakeforge synced 2025-03-02 15:22:11 +00:00
quakeforge/ruamoko/scheme/state.h

21 lines
353 B
Objective-C

#ifndef __state_h
#define __state_h
#include "Instruction.h"
#include "Frame.h"
#include "CompiledCode.h"
@class Continuation;
struct state_s {
instruction_t *program;
lineinfo_t *lineinfo;
int pc;
Frame *literals, *env;
SchemeObject *stack;
Continuation *cont;
Procedure *proc;
};
typedef struct state_s state_t;
#endif