mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-04 01:29:43 +02:00
... Defining a new macro, which generates a special paragraph with links to a new page describing the principles.
20 lines
448 B
C++
20 lines
448 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
Legacy.h
|
|
|
|
Dominic Mazzoni
|
|
|
|
**********************************************************************/
|
|
|
|
#include <wx/defs.h>
|
|
|
|
class wxFileName;
|
|
|
|
//! Update Audacity 1.0 file in-place to XML format
|
|
/*! @return true if successful, else no effect on the file
|
|
@excsafety{Strong}
|
|
*/
|
|
bool ConvertLegacyProjectFile(const wxFileName &filename);
|