mirror of
https://github.com/ggerganov/ggwave.git
synced 2026-02-06 16:47:59 +08:00
14 lines
326 B
C++
14 lines
326 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
class GGWave;
|
|
|
|
// GGWave helpers
|
|
|
|
void GGWave_setDefaultCaptureDeviceName(std::string name);
|
|
bool GGWave_init(const int playbackId, const int captureId, const int payloadLength = -1, const float sampleRateOffset = 0);
|
|
GGWave *& GGWave_instance();
|
|
bool GGWave_mainLoop();
|
|
bool GGWave_deinit();
|