it2play-sys 0.1.2

Unsafe Rust FFI bindings to it2play, an Impulse Tracker module player.
Documentation
1
2
3
4
5
6
7
8
9
// Dummy drivers to replace the default SDL2 drivers.
#include <stdint.h>
#include <stdbool.h>
#include <string.h>

void lockMixer(void) {};
void unlockMixer(void) {};
bool openMixer(int32_t mixingFrequency, int32_t mixingBufferSize) { return true; };
void closeMixer(void) {};