inno 0.4.2

Library for reading Inno Setup executables
Documentation
1
2
3
4
5
6
7
8
9
10
use zerocopy::{Immutable, IntoBytes, KnownLayout, TryFromBytes};

#[derive(
    Copy, Clone, Debug, Default, Eq, PartialEq, TryFromBytes, IntoBytes, KnownLayout, Immutable,
)]
#[repr(u16)]
pub enum DosSignature {
    #[default]
    MZ = u16::from_le_bytes(*b"MZ"),
}