mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-22 07:28:03 +02:00
21 lines
457 B
C
21 lines
457 B
C
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
ImportFLAC.h
|
|
|
|
Sami Liedes
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_IMPORT_FLAC__
|
|
#define __AUDACITY_IMPORT_FLAC__
|
|
|
|
#include "ImportForwards.h"
|
|
|
|
void GetFLACImportPlugin(ImportPluginList &importPluginList,
|
|
UnusableImportPluginList &unusableImportPluginList);
|
|
|
|
|
|
#endif
|