diff -r ae8775e0bc7a -r 372b161669e4 src/uri.h --- a/src/uri.h Sat Dec 12 00:01:57 2020 +0100 +++ b/src/uri.h Sat Dec 12 14:42:36 2020 +0100 @@ -31,7 +31,12 @@ static const wchar_t* CommentSeparatorForEntries = L"comment-separator-for-entries"; static const wchar_t* CommentSeparatorStandalone = L"comment-separator-standalone"; static const wchar_t* KeyValueSeparator = L"key-value-separator"; -static const wchar_t* Quotes = L"quotes"; +static const wchar_t* QuotesTypeForSections = L"quotes-type-for-sections"; +static const wchar_t* QuotesTypeForKeys = L"quotes-type-for-keys"; +static const wchar_t* QuotesTypeForValues = L"quotes-type-for-values"; +static const wchar_t* QuotesPatternForSections = L"quotes-pattern-for-sections"; +static const wchar_t* QuotesPatternForKeys = L"quotes-pattern-for-keys"; +static const wchar_t* QuotesPatternForValues = L"quotes-pattern-for-values"; static const wchar_t* Dialect = L"dialect"; } @@ -42,6 +47,13 @@ static const wchar_t* Backspace = L"escape-backspace"; } +/** not options but a values of the quotes-type-for-* options */ +namespace quoting { +static const wchar_t* None = L"none"; +static const wchar_t* Apostrophes = L"apostrophes"; +static const wchar_t* Quotes = L"quotes"; +} + /** not options but a values of the dialect option */ namespace dialect { static const wchar_t* JavaProperties = L"java-properties";