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__DECODER_H
|
||||
#define OggFLACPP__DECODER_H
|
||||
|
||||
#include "export.h"
|
||||
|
||||
#include "OggFLAC/stream_decoder.h"
|
||||
// we only need this for the state abstraction really...
|
||||
#include "FLAC++/decoder.h"
|
||||
@@ -74,9 +76,9 @@ namespace OggFLAC {
|
||||
|
||||
/** This class wraps the ::OggFLAC__StreamDecoder.
|
||||
*/
|
||||
class Stream {
|
||||
class OggFLACPP_API Stream {
|
||||
public:
|
||||
class State {
|
||||
class OggFLACPP_API State {
|
||||
public:
|
||||
inline State(::OggFLAC__StreamDecoderState state): state_(state) { }
|
||||
inline operator ::OggFLAC__StreamDecoderState() const { return state_; }
|
||||
|
||||
Reference in New Issue
Block a user