mirror of
https://github.com/denoland/rusty_v8.git
synced 2024-11-25 15:29:43 -05:00
make internal symbols private
This commit is contained in:
parent
624f678bc7
commit
5866aedb30
1 changed files with 6 additions and 6 deletions
12
src/v8.rs
12
src/v8.rs
|
@ -11,15 +11,15 @@ use crate::platform::Platform;
|
|||
use crate::support::UniquePtr;
|
||||
|
||||
extern "C" {
|
||||
pub fn v8__V8__SetFlagsFromCommandLine(
|
||||
fn v8__V8__SetFlagsFromCommandLine(
|
||||
argc: *mut c_int,
|
||||
argv: *mut *mut c_char,
|
||||
);
|
||||
pub fn v8__V8__GetVersion() -> *const c_char;
|
||||
pub fn v8__V8__InitializePlatform(platform: &'static mut Platform);
|
||||
pub fn v8__V8__Initialize();
|
||||
pub fn v8__V8__Dispose() -> bool;
|
||||
pub fn v8__V8__ShutdownPlatform() -> ();
|
||||
fn v8__V8__GetVersion() -> *const c_char;
|
||||
fn v8__V8__InitializePlatform(platform: &'static mut Platform);
|
||||
fn v8__V8__Initialize();
|
||||
fn v8__V8__Dispose() -> bool;
|
||||
fn v8__V8__ShutdownPlatform() -> ();
|
||||
}
|
||||
|
||||
#[derive(Debug, Eq, PartialEq)]
|
||||
|
|
Loading…
Reference in a new issue