tfc 0.7.0

The Fat Controller. A library for simulating mouse and keyboard events.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// mach/mach_init.h
// /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/mach_init.h

#[allow(non_camel_case_types)]
pub type mach_port_t = u32;

extern "C" {
    pub static mach_task_self_: mach_port_t;
}

// mach/mach_types.h
// /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/usr/include/mach/mach_types.h

#[allow(non_camel_case_types)]
pub type task_port_t = mach_port_t;