Adjusted project data.
Properly pointed to the repository location. Changed the rust edition.
This commit is contained in:
@ -3,10 +3,7 @@
|
||||
|
||||
use binding::c_enum;
|
||||
|
||||
|
||||
|
||||
c_enum!
|
||||
{
|
||||
c_enum! {
|
||||
/// Test enum is a simple enum testing the
|
||||
/// capabilities of creating a C enum.
|
||||
enum TestEnum: i32
|
||||
@ -22,8 +19,6 @@ c_enum!
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
pub fn main()
|
||||
{
|
||||
let cenum: TestEnum;
|
||||
|
@ -3,10 +3,7 @@
|
||||
|
||||
use binding::c_flags;
|
||||
|
||||
|
||||
|
||||
c_flags!
|
||||
{
|
||||
c_flags! {
|
||||
/// A sample of flags useful for the EvDev library.
|
||||
flags ReadFlags: u32
|
||||
{
|
||||
@ -25,7 +22,6 @@ c_flags!
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
pub fn main()
|
||||
{
|
||||
let flag: ReadFlags;
|
||||
|
Reference in New Issue
Block a user