1macro_rules! define_flags { 2 ($($name:ident,)*) => { 3 $( 4 pub const $name: &'static str = stringify!($name); 5 )* 6 7 }; 8 () => {}; 9} 10 11define_flags! { 12 FLAGS_AUTO_EXPAND, 13 FLAGS_FORK, 14 // FLAGS_N_EVENT, 15}