2019-06-25 02:31:18 -04:00
|
|
|
/// Defines a C style structure.
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! c_struct
|
|
|
|
{
|
|
|
|
{
|
|
|
|
$cname: ident
|
|
|
|
{
|
2019-06-25 03:14:38 -04:00
|
|
|
$(#[$attr: meta])*
|
2019-06-25 02:31:18 -04:00
|
|
|
$($name: ident: $type: ty);*;
|
|
|
|
}
|
|
|
|
} =>
|
|
|
|
{
|
|
|
|
#[repr(C)]
|
|
|
|
pub struct $cname
|
|
|
|
{
|
2019-06-25 03:14:38 -04:00
|
|
|
$(#[$attr])*
|
2019-06-25 02:31:18 -04:00
|
|
|
$(pub $name: $type),+,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|