mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-06 05:01:26 +00:00
75ec6bf244
This is a nasty commit, sorry, but 99% of the commit is interdependent.
17 lines
359 B
Objective-C
17 lines
359 B
Objective-C
#ifndef __Continuation_h
|
|
#define __Continuation_h
|
|
#include "SchemeObject.h"
|
|
#include "Procedure.h"
|
|
#include "state.h"
|
|
|
|
@interface Continuation: Procedure
|
|
{
|
|
state_t state;
|
|
}
|
|
+ (id) newWithState: (state_t []) st pc: (integer) p;
|
|
- (id) initWithState: (state_t []) st pc: (integer) p;
|
|
- (void) restoreOnMachine: (Machine []) m;
|
|
|
|
@end
|
|
|
|
#endif //__Procedure_h
|