git-svn-id: svn://localhost/ardour2/branches/3.0@5098 d708f5d6-7413-0410-9779-e7cbd77b26cf
19 lines
584 B
C++
19 lines
584 B
C++
#include "ardour/filename_extensions.h"
|
|
|
|
#include <stdint.h>
|
|
#include "i18n.h"
|
|
|
|
namespace ARDOUR {
|
|
|
|
const char* const template_suffix = X_(".template");
|
|
const char* const statefile_suffix = X_(".ardour");
|
|
const char* const pending_suffix = X_(".pending");
|
|
const char* const peakfile_suffix = X_(".peak");
|
|
const char* const backup_suffix = X_(".bak");
|
|
const char* const temp_suffix = X_(".tmp");
|
|
const char* const history_suffix = X_(".history");
|
|
const char* const export_preset_suffix = X_(".preset");
|
|
const char* const export_format_suffix = X_(".format");
|
|
|
|
}
|