xmrs 0.9.11

A library to edit SoundTracker data with pleasure
Documentation
1
2
3
4
5
6
7
8
9
10
11
use serde::Deserialize;
use serde_big_array::BigArray;

#[derive(Deserialize, Debug)]
#[repr(C)]
pub struct ItMidiMacros {
    global: [[u8; 32]; 9],
    parametric: [[u8; 32]; 16],
    #[serde(with = "BigArray")]
    fixed: [[u8; 32]; 128],
}