mirror of
https://github.com/claunia/flac.git
synced 2025-12-16 18:54:26 +00:00
tweaks to build libs as DLLs under windows
This commit is contained in:
@@ -20,6 +20,8 @@
|
||||
#ifndef OggFLACPP__ENCODER_H
|
||||
#define OggFLACPP__ENCODER_H
|
||||
|
||||
#include "export.h"
|
||||
|
||||
#include "OggFLAC/stream_encoder.h"
|
||||
#include "decoder.h"
|
||||
// we only need these for the state abstractions really...
|
||||
@@ -76,9 +78,9 @@ namespace OggFLAC {
|
||||
|
||||
/** This class wraps the ::OggFLAC__StreamEncoder.
|
||||
*/
|
||||
class Stream {
|
||||
class OggFLACPP_API Stream {
|
||||
public:
|
||||
class State {
|
||||
class OggFLACPP_API State {
|
||||
public:
|
||||
inline State(::OggFLAC__StreamEncoderState state): state_(state) { }
|
||||
inline operator ::OggFLAC__StreamEncoderState() const { return state_; }
|
||||
|
||||
Reference in New Issue
Block a user