Files
ggwave/examples/ggwave-common-sdl2.h
Georgi Gerganov d234b9ccb9 ggwave-gui : minor
2020-12-06 09:13:38 +02:00

16 lines
279 B
C++

#pragma once
#include <SDL.h>
#include <string>
class GGWave;
// GGWave helpers
void GGWave_setDefaultCaptureDeviceName(std::string name);
bool GGWave_init(const int playbackId, const int captureId);
GGWave * GGWave_instance();
bool GGWave_mainLoop();
bool GGWave_deinit();