mirror of
https://github.com/cookiengineer/audacity
synced 2025-09-18 17:10:55 +02:00
21 lines
456 B
C
21 lines
456 B
C
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
ImportPCM.h
|
|
|
|
Dominic Mazzoni
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_IMPORT_PCM__
|
|
#define __AUDACITY_IMPORT_PCM__
|
|
|
|
#include "ImportForwards.h"
|
|
|
|
void GetPCMImportPlugin(ImportPluginList &importPluginList,
|
|
UnusableImportPluginList &unusableImportPluginList);
|
|
|
|
|
|
#endif
|