-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathNativeScript.h
More file actions
49 lines (34 loc) · 1.09 KB
/
NativeScript.h
File metadata and controls
49 lines (34 loc) · 1.09 KB
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
48
49
#ifndef NATIVESCRIPT_H
#define NATIVESCRIPT_H
#ifdef __cplusplus
extern "C"
#endif // __cplusplus
void
nativescript_init(void* env, const char* metadata_path, const void* metadata_ptr);
#ifdef __OBJC__
#import <Foundation/Foundation.h>
__attribute__((visibility("default")))
@interface Config : NSObject
@property(nonatomic, retain) NSString* BaseDir;
@property(nonatomic, retain) NSString* ApplicationPath;
@property(nonatomic) void* MetadataPtr;
@property BOOL IsDebug;
@property BOOL LogToSystemConsole;
@property int ArgumentsCount;
@property(nonatomic) char** Arguments;
@property(nonatomic) void (*CustomLogCallback)(const char* message);
@end
__attribute__((visibility("default")))
@interface NativeScript : NSObject
- (instancetype)initWithConfig:(Config*)config;
- (void)runScriptString:(NSString*)script runLoop:(BOOL)runLoop;
- (void)restartWithConfig:(Config*)config;
- (void)shutdownRuntime;
/**
WARNING: this method does not return in most applications. (UIApplicationMain)
*/
- (void)runMainApplication;
- (bool)liveSync;
@end
#endif // __OBJC__
#endif /* NATIVESCRIPT_H */