Adjusted the new audio backends to compile on Linux

This commit is contained in:
Jonathan De Wachter 2014-10-07 09:35:46 +02:00 committed by Mario Liebisch
parent 5e0e645f46
commit 3fbfde39a5
15 changed files with 12 additions and 8 deletions

View file

@ -30,6 +30,7 @@
////////////////////////////////////////////////////////////
#include <SFML/Config.hpp>
#include <SFML/System/InputStream.hpp>
#include <SFML/System/Export.hpp>
#include <fstream>
@ -39,7 +40,7 @@ namespace sf
/// \brief Implementation of input stream based on a file
///
////////////////////////////////////////////////////////////
class FileInputStream : public InputStream
class SFML_SYSTEM_API FileInputStream : public InputStream
{
public :

View file

@ -30,6 +30,7 @@
////////////////////////////////////////////////////////////
#include <SFML/Config.hpp>
#include <SFML/System/InputStream.hpp>
#include <SFML/System/Export.hpp>
#include <cstdlib>
@ -39,7 +40,7 @@ namespace sf
/// \brief Implementation of input stream based on a memory chunk
///
////////////////////////////////////////////////////////////
class MemoryInputStream : public InputStream
class SFML_SYSTEM_API MemoryInputStream : public InputStream
{
public :