blob: a583e8daadbb0697cfc264c5a6dfb738aeb40d55 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#pragma once
#include "../../PreConfig.hpp"
#ifdef CRU_PLATFORM_OSX
#include "../../String.hpp"
#include <CoreFoundation/CFString.h>
namespace cru::platform::osx {
CFStringRef Convert(const String& string);
String Convert(CFStringRef string);
CFRange Convert(const Range& range);
Range Convert(const CFRange& range);
} // namespace cru::platform::osx
#endif
|