1
0

cfstring-utils.h 308 B

1234567891011121314151617
  1. #pragma once
  2. #include "../c99defs.h"
  3. #include "../dstr.h"
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. EXPORT char *cfstr_copy_cstr(CFStringRef cfstr, CFStringEncoding cfstr_enc);
  8. EXPORT bool cfstr_copy_dstr(CFStringRef cfstr, CFStringEncoding cfstr_enc,
  9. struct dstr *str);
  10. #ifdef __cplusplus
  11. }
  12. #endif