comparison dwt/internal/cocoa/CFPropertyList.d @ 0:380af2bdd8e5

Upload of whole dwt tree
author Jacob Carlborg <doob@me.com> <jacob.carlborg@gmail.com>
date Sat, 09 Aug 2008 17:00:02 +0200
parents
children 642f460a0908
comparison
equal deleted inserted replaced
-1:000000000000 0:380af2bdd8e5
1 /**
2 * Copyright: Copyright (c) 2008 Jacob Carlborg. All rights reserved.
3 * Authors: Jacob Carlborg
4 * Version: Initial created: Jul 28, 2008
5 * License: $(LINK2 http://opensource.org/licenses/bsd-license.php, BSD Style)
6 *
7 */
8 module dwt.internal.cocoa.CFPropertyList;
9
10 enum CFPropertyListFormat {
11 kCFPropertyListOpenStepFormat = 1,
12 kCFPropertyListXMLFormat_v1_0 = 100,
13 kCFPropertyListBinaryFormat_v1_0 = 200
14 }
15
16 alias CFPropertyListFormat.kCFPropertyListOpenStepFormat kCFPropertyListOpenStepFormat;
17 alias CFPropertyListFormat.kCFPropertyListXMLFormat_v1_0 kCFPropertyListXMLFormat_v1_0;
18 alias CFPropertyListFormat.kCFPropertyListBinaryFormat_v1_0 kCFPropertyListBinaryFormat_v1_0;
19
20 enum CFPropertyListMutabilityOptions {
21 kCFPropertyListImmutable = 0,
22 kCFPropertyListMutableContainers = 1,
23 kCFPropertyListMutableContainersAndLeaves = 2
24 }
25
26 alias CFPropertyListMutabilityOptions.kCFPropertyListImmutable kCFPropertyListImmutable;
27 alias CFPropertyListMutabilityOptions.kCFPropertyListMutableContainers kCFPropertyListMutableContainers;
28 alias CFPropertyListMutabilityOptions.kCFPropertyListMutableContainersAndLeaves kCFPropertyListMutableContainersAndLeaves;