1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-08-01 00:19:27 +02:00
audacity/src/Benchmark.h
Paul Licameli 406b23cae7 More uses of AUDACITY_DLL_API...
... 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.
2021-05-10 10:46:55 -04:00

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__