forked from Dremora/foo_musicbrainz
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPreferences.h
More file actions
36 lines (26 loc) · 884 Bytes
/
Preferences.h
File metadata and controls
36 lines (26 loc) · 884 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#pragma once
#include "foo_musicbrainz.h"
namespace foo_musicbrainz {
namespace Preferences {
extern const GUID guid_short_date;
extern cfg_bool short_date;
extern const GUID guid_no_feat;
extern cfg_bool no_feat;
extern const GUID guid_write_ids;
extern cfg_bool write_ids;
extern const GUID guid_albumtype;
extern cfg_bool albumtype;
extern const GUID guid_albumstatus;
extern cfg_bool albumstatus;
extern const GUID guid_albumtype_data;
extern cfg_string albumtype_data;
extern const GUID guid_albumstatus_data;
extern cfg_string albumstatus_data;
extern const GUID guid_ascii_punctuation;
extern const bool default_ascii_punctuation;
extern cfg_bool ascii_punctuation;
extern const GUID guid_write_label_info;
extern const bool default_write_label_info;
extern cfg_bool write_label_info;
}
}