mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-21 06:40:08 +02:00
22 lines
485 B
C++
22 lines
485 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
ImportFLAC.h
|
|
|
|
Sami Liedes
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_IMPORT_FLAC__
|
|
#define __AUDACITY_IMPORT_FLAC__
|
|
|
|
class ImportPluginList;
|
|
class UnusableImportPluginList;
|
|
|
|
void GetFLACImportPlugin(ImportPluginList *importPluginList,
|
|
UnusableImportPluginList *unusableImportPluginList);
|
|
|
|
|
|
#endif
|