schlechter Anfang

This commit is contained in:
Cedric
2025-10-04 01:46:19 +02:00
parent a79212b525
commit 3693e47357
9 changed files with 95796 additions and 4 deletions

14
include/LrcLibCrypt.hpp Normal file
View File

@@ -0,0 +1,14 @@
#include <string>
class LrcLibCrypt
{
private:
std::string PublishToken;
std::string prefix;
std::string nonce;
public:
LrcLibCrypt();
};
// https://lrclib.net/docs

95649
include/miniaudio.h Normal file

File diff suppressed because it is too large Load Diff

11
include/playaudio.hpp Normal file
View File

@@ -0,0 +1,11 @@
#include <string>
#include "miniaudio.h"
class audio
{
private:
void data_callback(ma_device *pDevice, void *pOutput, const void *pInput, ma_uint32 frameCount);
public:
audio(std::string eingabe);
};