making wasmer_byte_array fields public

This commit is contained in:
Yaron Wittenstein 2019-07-29 17:24:43 +03:00
parent 8408260edd
commit 784e65d587

View File

@ -97,7 +97,6 @@ pub mod table;
pub mod trampoline; pub mod trampoline;
pub mod value; pub mod value;
#[derive(Debug)]
#[allow(non_camel_case_types)] #[allow(non_camel_case_types)]
#[repr(C)] #[repr(C)]
pub enum wasmer_result_t { pub enum wasmer_result_t {
@ -119,6 +118,6 @@ pub struct wasmer_limit_option_t {
#[repr(C)] #[repr(C)]
pub struct wasmer_byte_array { pub struct wasmer_byte_array {
bytes: *const u8, pub bytes: *const u8,
bytes_len: u32, pub bytes_len: u32,
} }