mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-18 01:27:41 +02:00
// Indentation settings for Vim and Emacs etc. lines from all files, as Campbell's patch (except for other changes to Languages.cpp)
21 lines
483 B
C++
21 lines
483 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
ImportMP3.h
|
|
|
|
Dominic Mazzoni
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_IMPORT_MP3__
|
|
#define __AUDACITY_IMPORT_MP3__
|
|
|
|
class ImportPluginList;
|
|
class UnusableImportPluginList;
|
|
|
|
void GetMP3ImportPlugin(ImportPluginList *importPluginList,
|
|
UnusableImportPluginList *unusableImportPluginList);
|
|
|
|
#endif
|