X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=c-bindings-gen%2Fsrc%2Fmain.rs;h=1d37bb2b6335c4a538511b13345d5f01be36a5bc;hb=e8c40b6f04f3b55cd305c7ad88b07dec23a84c4e;hp=3a7bfd6c584d0d4f131ce7ea17ec2dc92487a474;hpb=d4b750f56a7b110dc9ec241c19dfe2fd5e90fdaf;p=ldk-c-bindings diff --git a/c-bindings-gen/src/main.rs b/c-bindings-gen/src/main.rs index 3a7bfd6..1d37bb2 100644 --- a/c-bindings-gen/src/main.rs +++ b/c-bindings-gen/src/main.rs @@ -1,3 +1,11 @@ +// This file is Copyright its original authors, visible in version control +// history. +// +// This file is licensed under the Apache License, Version 2.0 +// or the MIT license , at your option. +// You may not use this file except in accordance with one or both of these +// licenses. + //! Converts a rust crate into a rust crate containing a number of C-exported wrapper functions and //! classes (which is exportable using cbindgen). //! In general, supports convering: @@ -1342,6 +1350,15 @@ fn convert_file<'a, 'b>(libast: &'a FullLibraryAST, crate_types: &mut CrateTypes let mut out = std::fs::OpenOptions::new().write(true).create(true).truncate(true) .open(new_file_path).expect("Unable to open new src file"); + writeln!(out, "// This file is Copyright its original authors, visible in version control").unwrap(); + writeln!(out, "// history and in the source files from which this was generated.").unwrap(); + writeln!(out, "//").unwrap(); + writeln!(out, "// This file is licensed under the license available in the LICENSE or LICENSE.md").unwrap(); + writeln!(out, "// file in the root of this repository or, if no such file exists, the same").unwrap(); + writeln!(out, "// license as that which applies to the original source files from which this").unwrap(); + writeln!(out, "// source was automatically generated.").unwrap(); + writeln!(out, "").unwrap(); + writeln_docs(&mut out, &attrs, ""); if module == "" { @@ -1357,8 +1374,8 @@ fn convert_file<'a, 'b>(libast: &'a FullLibraryAST, crate_types: &mut CrateTypes writeln!(out, "#![allow(unused_unsafe)]").unwrap(); writeln!(out, "#![allow(unused_braces)]").unwrap(); writeln!(out, "#![deny(missing_docs)]").unwrap(); - writeln!(out, "mod c_types;").unwrap(); - writeln!(out, "mod bitcoin;").unwrap(); + writeln!(out, "pub mod c_types;").unwrap(); + writeln!(out, "pub mod bitcoin;").unwrap(); } else { writeln!(out, "\nuse std::ffi::c_void;\nuse bitcoin::hashes::Hash;\nuse crate::c_types::*;\n").unwrap(); }