diskop.h 370 B

123456789101112
  1. #pragma once
  2. #include "tracker_engine.h"
  3. #include "tracker_engine_defs.h"
  4. #include <stdbool.h>
  5. #include <stdio.h>
  6. #include <storage/storage.h>
  7. #include <toolbox/stream/file_stream.h>
  8. bool load_song(TrackerSong* song, Stream* stream);
  9. bool load_instrument(Instrument* inst, Stream* stream);
  10. void load_instrument_inner(Stream* stream, Instrument* inst, uint8_t version);