ref: a41d051499b5be820f4eb2a96efb8019bd1fcd53
dir: /src/support/ModStream.h/
#pragma once #include "cmixer.h" namespace ibxm { extern "C" { #include "ibxm.h" } } namespace cmixer { class ModStream : public Source { ibxm::module* module; ibxm::replay* replay; std::vector<char> moduleFile; std::vector<int> replayBuffer; int rbOffset; int rbLength; void Rewind2(); void FillBuffer(int16_t* buffer, int length); public: ModStream(std::vector<char>&& rawModule); }; }