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
// CoreFoundation/CFBase.h
// /Library/Developer/CommandLineTools/SDKs/MacOSX.sdk/System/Library/Frameworks/CoreFoundation.framework/Versions/A/Headers/CFBase.h

use std::ffi::c_void;

#[repr(transparent)]
pub struct CFString(c_void);
pub type CFStringRef = *const CFString;

#[link(name = "CoreFoundation", kind = "framework")]
extern {
    pub fn CFRelease(cf: *mut c_void);
}