We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
static_detour
You have to use retour::static_detour;, you can't just do retour::static_detour! {}.
use retour::static_detour;
retour::static_detour! {}
The text was updated successfully, but these errors were encountered:
I actually noticed this bug while working on the c_variadics issue.
retour-rs/src/macros.rs
Lines 39 to 41 in 8dca3f2
I'm pretty sure I just need to replace all static_detour!(...) with $crate::static_detour!(...). I'll put in a fix shortly
static_detour!(...)
$crate::static_detour!(...)
Sorry, something went wrong.
I just pushed v0.3.1 to crates.io, so you should be able to use that now.
Successfully merging a pull request may close this issue.
You have to
use retour::static_detour;
, you can't just doretour::static_detour! {}
.The text was updated successfully, but these errors were encountered: