blob: 618b597c1ae1bddee7f49e08ef46b53d433d6bfd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/* CFLocale.h
Copyright (c) 2002-2003, Apple, Inc. All rights reserved.
*/
#if !defined(__COREFOUNDATION_CFLOCALE__)
#define __COREFOUNDATION_CFLOCALE__ 1
#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_3
#include <CoreFoundation/CFBase.h>
#if defined(__cplusplus)
extern "C" {
#endif
typedef const struct __CFLocale *CFLocaleRef;
#if defined(__cplusplus)
}
#endif
#endif
#endif /* ! __COREFOUNDATION_CFLOCALE__ */
|