Skip to content
New issue

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

Split a -sys crate out #68

Merged
merged 19 commits into from Oct 15, 2015

Port date to sys crate

  • Loading branch information
sfackler committed Sep 6, 2015
commit 9c6d29219c745ebd3d3801608d9ebdc38ceb469d
File renamed without changes.
@@ -6,5 +6,6 @@ pub mod array;
pub mod base;
pub mod bundle;
pub mod data;
pub mod date;
pub mod number;
pub mod string;
@@ -58,7 +58,6 @@ pub mod set;
pub mod string;
pub mod url;
pub mod bundle;
pub mod date;
pub mod runloop;

#[cfg(test)]
@@ -15,12 +15,12 @@ use core_foundation_sys::base::{CFTypeID, CFHashCode, mach_port_t};
use core_foundation_sys::base::{kCFAllocatorDefault, Boolean, CFOptionFlags};
use core_foundation_sys::array::{CFArrayRef};
use core_foundation_sys::string::CFStringRef;
use core_foundation_sys::date::{CFAbsoluteTime, CFTimeInterval};
use libc::c_void;
use std::mem;

use base::{TCFType};
use string::{CFString};
use date::{CFAbsoluteTime, CFTimeInterval};

pub struct CFRunLoop(CFRunLoopRef);

ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.