view 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
line wrap: on
line source

/**
 * Copyright: Copyright (c) 2008 Jacob Carlborg. All rights reserved.
 * Authors: Jacob Carlborg
 * Version: Initial created: Jul 28, 2008
 * License: $(LINK2 http://opensource.org/licenses/bsd-license.php, BSD Style)
 * 
 */
module dwt.internal.cocoa.CFPropertyList;

enum CFPropertyListFormat {
    kCFPropertyListOpenStepFormat = 1,
    kCFPropertyListXMLFormat_v1_0 = 100,
    kCFPropertyListBinaryFormat_v1_0 = 200
}

alias CFPropertyListFormat.kCFPropertyListOpenStepFormat kCFPropertyListOpenStepFormat;
alias CFPropertyListFormat.kCFPropertyListXMLFormat_v1_0 kCFPropertyListXMLFormat_v1_0;
alias CFPropertyListFormat.kCFPropertyListBinaryFormat_v1_0 kCFPropertyListBinaryFormat_v1_0;

enum CFPropertyListMutabilityOptions {
    kCFPropertyListImmutable = 0,
    kCFPropertyListMutableContainers = 1,
    kCFPropertyListMutableContainersAndLeaves = 2
}

alias CFPropertyListMutabilityOptions.kCFPropertyListImmutable kCFPropertyListImmutable;
alias CFPropertyListMutabilityOptions.kCFPropertyListMutableContainers kCFPropertyListMutableContainers;
alias CFPropertyListMutabilityOptions.kCFPropertyListMutableContainersAndLeaves kCFPropertyListMutableContainersAndLeaves;