mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-30 23:23:44 +02:00
23 lines
519 B
C++
23 lines
519 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
ImportGStreamer.h
|
|
|
|
LRN
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_IMPORT_GSTREAMER__
|
|
#define __AUDACITY_IMPORT_GSTREAMER__
|
|
|
|
#include "ImportPlugin.h"
|
|
|
|
class ImportPluginList;
|
|
class UnusableImportPluginList;
|
|
|
|
void GetGStreamerImportPlugin(ImportPluginList *importPluginList,
|
|
UnusableImportPluginList *unusableImportPluginList);
|
|
|
|
#endif
|