From 09f3bd07b8a7836bfad5d49c02896c2be7e39868 Mon Sep 17 00:00:00 2001 From: Yoshifumi Kawai <46207+neuecc@users.noreply.github.com> Date: Tue, 7 Mar 2023 17:06:06 +0900 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c26f539..ff8ea41 100644 --- a/README.md +++ b/README.md @@ -81,7 +81,7 @@ cc::Build::new().file("lz4.c").compile("lz4"); csbindgen::Builder::default() .input_bindgen_file("lz4.rs") // read from bindgen generated code .rust_file_header("use super::lz4;") - .csharp_entry_point_prefix("cs_bindgen") + .csharp_entry_point_prefix("csbindgen_") .csharp_dll_name("liblz4") .generate_to_file("lz4_ffi.rs", "../dotnet/NativeMethods.lz4.g.cs") .unwrap();