#[cfg(all(windows, target_pointer_width = "32"))]
macro_rules! current_target {
($($tt:tt)*) => ($($tt)*);
}
#[cfg(not(all(windows, target_pointer_width = "32")))]
macro_rules! current_target {
($($tt:tt)*) => ();
}
#[allow(unused_macros)]
macro_rules! branch {
(pe32 { $($pe32:tt)* } pe64 $pe64:tt) => { $($pe32)* };
}