(API Change) Unsquish libobs/util

Changed:                      To:
-----------------------------------------------------------
dstr_isempty                  dstr_is_empty
cf_lexer_gettokens            cf_lexer_get_tokens
cf_preprocessor_gettokens     cf_preprocessor_get_tokens
This commit is contained in:
jp9000
2014-08-05 13:38:24 -07:00
parent 04712b5fe9
commit 9d300685ca
12 changed files with 22 additions and 21 deletions

View File

@@ -206,7 +206,7 @@ static bool DecodeDeviceId(DeviceId &out, const char *device_id)
BPtr<wchar_t> wname = dstr_to_wcs(name);
out.name = wname;
if (!dstr_isempty(path)) {
if (!dstr_is_empty(path)) {
BPtr<wchar_t> wpath = dstr_to_wcs(path);
out.path = wpath;
}