FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
node-java/src-cpp/nodeJavaBridge.cpp at master · LittleGnome/node-java · GitHub
LittleGnome
/
node-java
Public
forked from
joeferner/node-java
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
node-java
/
src-cpp
/
nodeJavaBridge.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
18 lines (12 loc) · 359 Bytes
Breadcrumbs
node-java
/
src-cpp
/
nodeJavaBridge.cpp
Copy path
File metadata and controls
18 lines (12 loc) · 359 Bytes
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
#
include
"
java.h
"
#
include
"
javaObject.h
"
extern
"
C
"
{
static
void
init
(v8::Local<v8::Object> target, v8::Local<v8::Value>,
void
*) {
Java::Init
(target);
JavaObject::Init
(target);
}
NODE_MODULE
(nodejavabridge_bindings, init);
}
#
ifdef
WIN32
BOOL
APIENTRY
DllMain
(
HMODULE
hModule,
DWORD
ul_reason_for_call,
LPVOID
lpReserved) {
return
TRUE
; }
#
endif
Back
|
FazBrowse Home
|
New Git URL