FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
runtimes/NativeScript/NativeScript.h at refactor · NativeScript/runtimes · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
NativeScript
/
runtimes
Public
Uh oh!
There was an error while loading.
Please reload this page
.
Notifications
You must be signed in to change notification settings
Fork
2
Star
26
Code
Issues
13
Pull requests
5
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
runtimes
/
NativeScript
/
NativeScript.h
Copy path
More file actions
More file actions
Latest commit
History
History
History
49 lines (34 loc) · 1.09 KB
Breadcrumbs
runtimes
/
NativeScript
/
NativeScript.h
Copy path
File metadata and controls
49 lines (34 loc) · 1.09 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
*/
Back
|
FazBrowse Home
|
New Git URL