mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-29 15:09:30 +02:00
... It makes more sense there, at an even lower level than lib-files. Avoid type wxString.
22 lines
409 B
C++
22 lines
409 B
C++
/**********************************************************************
|
|
|
|
Audacity: A Digital Audio Editor
|
|
|
|
ModuleConstants.cpp
|
|
|
|
Paul Licameli
|
|
|
|
**********************************************************************/
|
|
|
|
#include "ModuleConstants.h"
|
|
|
|
// We want Audacity with a capital 'A'
|
|
// DA: App name
|
|
const std::wstring AppName =
|
|
#ifndef EXPERIMENTAL_DA
|
|
L"Audacity"
|
|
#else
|
|
L"DarkAudacity"
|
|
#endif
|
|
;
|