18 lines
308 B
C
18 lines
308 B
C
#pragma once
|
|
|
|
#include "../c99defs.h"
|
|
#include "../dstr.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
EXPORT char *cfstr_copy_cstr(CFStringRef cfstr, CFStringEncoding cfstr_enc);
|
|
|
|
EXPORT bool cfstr_copy_dstr(CFStringRef cfstr, CFStringEncoding cfstr_enc,
|
|
struct dstr *str);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|