-
Notifications
You must be signed in to change notification settings - Fork 338
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support passing function pointers across the FFI #52
Comments
@dtolnay What's the plan for solving this? |
Do you have any progress about this? I want this feature, and as cxx not support it, so I have to use
to register function pointer(with specific function signature) on a static memory, and in Rust call the Can I do something for support this feature? @dtolnay and this design is ok? |
Here's a pattern to use |
|
i.e. function parameters with the type
fn(...) -> ...
.The text was updated successfully, but these errors were encountered: