/usr/include/pike8.0/pike/OCPikeInterpreter.h is in pike8.0-dev 8.0.498-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | /* Standard Pike include files. */
#include "bignum.h"
#include "array.h"
#include "builtin_functions.h"
#include "constants.h"
#include "interpret.h"
#include "mapping.h"
#include "multiset.h"
#include "module_support.h"
#include "object.h"
#include "pike_macros.h"
#include "pike_types.h"
#include "program.h"
#include "stralloc.h"
#include "svalue.h"
#include "threads.h"
#include "version.h"
#include "operators.h"
/* Objective-C includes */
#import <Foundation/NSObject.h>
#import <Foundation/NSException.h>
__attribute__((visibility("default")))
@interface OCPikeInterpreter : NSObject
{
int is_started;
id master_location;
JMP_BUF jmploc;
}
+ (OCPikeInterpreter *)sharedInterpreter;
+ (id)allocWithZone:(NSZone *)zone;
- (id)copyWithZone:(NSZone *)zone;
- (id)retain;
- (void)release;
- (id)autorelease;
- (NSUInteger)retainCount;
- (void)setMaster:(id)master;
- (BOOL)startInterpreter;
- (BOOL)isStarted;
- (BOOL)stopInterpreter;
- (struct Pike_interpreter_struct *) getInterpreter;
- (struct program *)compileString: (id)code;
- (struct svalue *)evalString: (id)expression;
@end /* interface OCPikeInterpreter */
|