summaryrefslogtreecommitdiff
path: root/orkbasecxx/AudioCapture.h
diff options
context:
space:
mode:
authorHenri Herscher <henri@oreka.org>2006-06-29 16:34:29 +0000
committerHenri Herscher <henri@oreka.org>2006-06-29 16:34:29 +0000
commit3868172df25ae59bd0ecc524b782ac4734812891 (patch)
treef412f8f4d2b67165fbbf3670d114027bd9ff54c6 /orkbasecxx/AudioCapture.h
parentff483592a2ff23b09c7924925c594e366f563a36 (diff)
DLL_IMPORT_EXPORT becomes DLL_IMPORT_EXPORT_ORKBASE, so that different DLLs can both import and export symbols.
git-svn-id: https://oreka.svn.sourceforge.net/svnroot/oreka/trunk@286 09dcff7a-b715-0410-9601-b79a96267cd0
Diffstat (limited to 'orkbasecxx/AudioCapture.h')
-rw-r--r--orkbasecxx/AudioCapture.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/orkbasecxx/AudioCapture.h b/orkbasecxx/AudioCapture.h
index 136c153..a81ce8b 100644
--- a/orkbasecxx/AudioCapture.h
+++ b/orkbasecxx/AudioCapture.h
@@ -36,7 +36,7 @@ typedef enum
*/
#define MEDIA_CHUNK_MARKER 0x2A2A2A2A // corresponds to "****"
-class DLL_IMPORT_EXPORT AudioChunkDetails
+class DLL_IMPORT_EXPORT_ORKBASE AudioChunkDetails
{
public:
AudioChunkDetails();
@@ -56,7 +56,7 @@ public:
/**
* This class represents a piece of audio.
*/
-class DLL_IMPORT_EXPORT AudioChunk
+class DLL_IMPORT_EXPORT_ORKBASE AudioChunk
{
public:
AudioChunk();
@@ -92,7 +92,7 @@ typedef boost::shared_ptr<AudioChunk> AudioChunkRef;
//==========================================================
-class DLL_IMPORT_EXPORT CaptureEvent
+class DLL_IMPORT_EXPORT_ORKBASE CaptureEvent
{
public:
CaptureEvent();
@@ -167,9 +167,9 @@ typedef boost::shared_ptr<CaptureEvent> CaptureEventRef;
FfInvalid = 6
} FileFormatEnum;
-int DLL_IMPORT_EXPORT FileFormatToEnum(CStdString& format);
-CStdString DLL_IMPORT_EXPORT FileFormatToString(int formatEnum);
-CStdString DLL_IMPORT_EXPORT FileFormatGetExtension(FileFormatEnum);
+int DLL_IMPORT_EXPORT_ORKBASE FileFormatToEnum(CStdString& format);
+CStdString DLL_IMPORT_EXPORT_ORKBASE FileFormatToString(int formatEnum);
+CStdString DLL_IMPORT_EXPORT_ORKBASE FileFormatGetExtension(FileFormatEnum);
#endif