summaryrefslogtreecommitdiff
path: root/orkaudio/AudioCapturePlugin.h
diff options
context:
space:
mode:
authorHenri Herscher <henri@oreka.org>2006-06-21 21:06:13 +0000
committerHenri Herscher <henri@oreka.org>2006-06-21 21:06:13 +0000
commit2da3fde0f17f0df3ac54559badadefcc347126e5 (patch)
tree7a9c3107dbf33df2bbebd44d97e62894c5a80cd1 /orkaudio/AudioCapturePlugin.h
parent77a00908352320ba499b2760e709c2313c1df292 (diff)
Moved ConfigManager and LogManager stuff to orkbasecxx
git-svn-id: https://oreka.svn.sourceforge.net/svnroot/oreka/trunk@280 09dcff7a-b715-0410-9601-b79a96267cd0
Diffstat (limited to 'orkaudio/AudioCapturePlugin.h')
-rw-r--r--orkaudio/AudioCapturePlugin.h48
1 files changed, 0 insertions, 48 deletions
diff --git a/orkaudio/AudioCapturePlugin.h b/orkaudio/AudioCapturePlugin.h
deleted file mode 100644
index e52fe97..0000000
--- a/orkaudio/AudioCapturePlugin.h
+++ /dev/null
@@ -1,48 +0,0 @@
-/*
- * Oreka -- A media capture and retrieval platform
- *
- * Copyright (C) 2005, orecx LLC
- *
- * http://www.orecx.com
- *
- * This program is free software, distributed under the terms of
- * the GNU General Public License.
- * Please refer to http://www.gnu.org/copyleft/gpl.html
- *
- */
-
-#ifndef __AUDIOCAPTUREPLUGIN_H__
-#define __AUDIOCAPTUREPLUGIN_H__
-
-#include "AudioCapture.h"
-#include "LogManager.h"
-#include "xercesc/dom/DOMNode.hpp"
-
-using namespace XERCES_CPP_NAMESPACE;
-
-#ifdef WIN32
-#define __CDECL__ __cdecl
-#else
-#define __CDECL__
-#endif
-
-#define AUDIO_CAPTURE_PLUGIN_INTERFACE_VERSION 1
-
-// Callback definitions
-typedef void (__CDECL__*AudioChunkCallBackFunction)(AudioChunkRef, CStdString& capturePort);
-typedef void (__CDECL__*CaptureEventCallBackFunction)(CaptureEventRef, CStdString& capturePort);
-
-
-// Exported functions definitions
-typedef void (__CDECL__* RegisterCallBacksFunction)(AudioChunkCallBackFunction, CaptureEventCallBackFunction, OrkLogManager*);
-typedef void (__CDECL__* InitializeFunction)();
-typedef void (__CDECL__* RunFunction)();
-typedef void (__CDECL__* ShutdownFunction)();
-typedef void (__CDECL__* ConfigureFunction)(DOMNode*);
-typedef void (__CDECL__* StartCaptureFunction)(CStdString& port);
-typedef void (__CDECL__* StopCaptureFunction)(CStdString& port);
-
-
-
-#endif
-