David Robillard
bb9cc45cd2
Vimmers, try let c_space_errors = 1 in your .vimrc to highlight this kind of stuff in red. I don't know the emacs equivalent... git-svn-id: svn://localhost/ardour2/branches/3.0@5773 d708f5d6-7413-0410-9779-e7cbd77b26cf
19 lines
561 B
C++
19 lines
561 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");
|
|
|
|
}
|