Merge pull request #161 from msiglreith/pub_fn

Public export function pointers
This commit is contained in:
Maik Klein 2018-11-22 16:05:31 +01:00 committed by GitHub
commit 6a5f18e6ac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2269 additions and 2246 deletions

File diff suppressed because it is too large Load diff

View file

@ -791,7 +791,7 @@ fn generate_function_pointers<'a>(
pub struct #ident { pub struct #ident {
#( #(
#names_ref: extern "system" fn(#expanded_params_ref) -> #return_types_ref, pub #names_ref: extern "system" fn(#expanded_params_ref) -> #return_types_ref,
)* )*
} }