yolobs-studio/libobs/util/apple/cfstring-utils.h

18 lines
308 B
C
Raw Normal View History

2019-07-27 12:47:10 +00:00
#pragma once
#include "../c99defs.h"
#include "../dstr.h"
#ifdef __cplusplus
extern "C" {
#endif
EXPORT char *cfstr_copy_cstr(CFStringRef cfstr, CFStringEncoding cfstr_enc);
2019-09-22 21:19:10 +00:00
EXPORT bool cfstr_copy_dstr(CFStringRef cfstr, CFStringEncoding cfstr_enc,
struct dstr *str);
2019-07-27 12:47:10 +00:00
#ifdef __cplusplus
}
#endif