You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is warnings when compiling with rustc 1.78.0:
warning: `extern` block uses type `NotCopyNotClone`, which is not FFI-safe
--> sdk/info.rs:4:26
|
4 | fn info_version() -> RString;
| ^^^^^^^ not FFI-safe
|
= help: consider adding a member to this struct
= note: this struct has no fields
= note: `#[warn(improper_ctypes)]` on by default
The text was updated successfully, but these errors were encountered:
Hi, i'm trying to implement sdk for my plugin system. In an application side i'm define a function:
In a plugin side i'm trying to use it like:
There is warnings when compiling with
rustc 1.78.0
:The text was updated successfully, but these errors were encountered: