mistserver/lib/vorbis.h
2013-08-13 16:30:22 +02:00

16 lines
299 B
C++

#pragma once
#include<sys/types.h>
#include<stdint.h>
#include<string>
namespace vorbis{
class header{
public:
header();
bool read(char* newData, unsigned int length);
private:
char* data;
unsigned int datasize;
bool checkDataSize(unsigned int size);
};
}