YZ_functions.h 400 B

123456789101112
  1. #ifndef YZ_FUNCTIONS_H
  2. #define YZ_FUNCTIONS_H
  3. #include "YZ_types.h"
  4. YZ_audio_stream* YZ_load_audio_file(char* filename, unsigned char debug_mode);
  5. pa_callback_data* YZ_play_stream(YZ_audio_stream* audio_stream);
  6. pa_callback_data* YZ_play_stream_dynamic(YZ_audio_stream* audio_stream, double* speed_multiplier, unsigned char* should_loop_audio);
  7. void YZ_init_player();
  8. void YZ_kill_player();
  9. #endif