mirror of
https://github.com/cookiengineer/audacity
synced 2025-11-21 16:37:12 +01:00
22 lines
464 B
C++
22 lines
464 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
|