mirror of
https://github.com/cookiengineer/audacity
synced 2025-08-01 00:19:27 +02:00
... in many places where the function call will later need to be between modules (or libraries, or the executable) and the annotation will be a necessity to keep the linkage working on Windows. That's all that this sweeping commit does.
21 lines
442 B
C++
21 lines
442 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
Benchmark.h
|
|
|
|
Dominic Mazzoni
|
|
|
|
**********************************************************************/
|
|
|
|
#ifndef __AUDACITY_BENCHMARK__
|
|
#define __AUDACITY_BENCHMARK__
|
|
|
|
class wxWindow;
|
|
class AudacityProject;
|
|
|
|
AUDACITY_DLL_API
|
|
void RunBenchmark( wxWindow *parent, AudacityProject &project );
|
|
|
|
#endif // define __AUDACITY_BENCHMARK__
|