1
Fork 0
mirror of https://github.com/redstrate/Physis.git synced 2025-04-23 13:17:44 +00:00

Explicitly link to unshield library for now

I don't think this is the right solution, but I need to unbreak some
builds now.
This commit is contained in:
Joshua Goins 2024-06-27 16:51:03 -04:00
parent 39d7a5b703
commit b7e5f914d5

View file

@ -37,6 +37,7 @@ struct Unshield {
_private: [u8; 0],
}
#[link(name = "unshield")]
extern "C" {
fn unshield_open(filename: *const c_char) -> *mut Unshield;
fn unshield_close(unshield: *mut Unshield);