cfstring-utils.h 301 B

12345678910111213141516
  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, struct dstr *str);
  9. #ifdef __cplusplus
  10. }
  11. #endif