You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
306 B
14 lines
306 B
//TODO: There are a bunch of static inline functions that bindgen didn't pick up and idk how they work |
|
|
|
use ::Handle; |
|
|
|
#[derive(Clone, Copy)] |
|
#[repr(C)] |
|
pub enum Enum_Unnamed1 { |
|
RUNFLAG_APTWORKAROUND = 1, |
|
RUNFLAG_APTREINIT = 2, |
|
} |
|
|
|
extern "C" { |
|
pub fn envGetHandle(name: *const u8) -> Handle; |
|
}
|
|
|