comparison dstep/applicationservices/coregraphics/CGPDFString.d @ 12:9f0b49a2f64e

Added the ApplicationServices frameworks: ATS, ColorSync and CoreGraphics
author Jacob Carlborg <doob@me.com>
date Mon, 03 Aug 2009 14:00:21 +0200
parents
children
comparison
equal deleted inserted replaced
11:07194b026fa4 12:9f0b49a2f64e
1 /**
2 * Copyright: Copyright (c) 2009 Jacob Carlborg.
3 * Authors: Jacob Carlborg
4 * Version: Initial created: Aug 1, 2009
5 * License: $(LINK2 http://www.boost.org/LICENSE_1_0.txt, Boost Software License 1.0)
6 */
7 module dstep.applicationservices.coregraphics.CGPDFString;
8
9 import dstep.corefoundation.CFBase;
10 import dstep.corefoundation.CFDate;
11 import dstep.corefoundation.CFString;
12 import dstep.applicationservices.coregraphics.CGBase;
13
14 struct CGPDFString;
15
16 alias CGPDFString* CGPDFStringRef;
17
18 extern (C)
19 {
20 uint CGPDFStringGetLength (CGPDFStringRef string);
21 char* CGPDFStringGetBytePtr (CGPDFStringRef string);
22 CFStringRef CGPDFStringCopyTextString (CGPDFStringRef string);
23 CFDateRef CGPDFStringCopyDate (CGPDFStringRef string);
24 }