|
Mac OS 9
|
xxx put contents here xxx More...
#include <CGBase.h>Go to the source code of this file.
Typedefs | |
| typedef struct CGFont * | CGFontRef |
| typedef unsigned short | CGGlyph |
Functions | |
| CGFontRef | CGFontCreateWithPlatformFont (void *platformFontReference) |
| CGFontRef | CGFontRetain (CGFontRef font) |
| void | CGFontRelease (CGFontRef font) |
xxx put contents here xxx
For bug reports, consult the following page on the World Wide Web:
http://developer.apple.com/bugreporter/
| CGFontRef CGFontCreateWithPlatformFont | ( | void * | platformFontReference | ) |
Create a CGFont using ‘platformFontReference’, a pointer to a platform-specific font reference. For MacOS X, ‘platformFontReference’ should be a pointer to an ATSFontRef. CGFontCreateWithPlatformFont()
| void CGFontRelease | ( | CGFontRef | font | ) |
Decrement the retain count of ‘font’. If the retain count reaches 0, then release it and any associated resources. CGFontRelease()
| CGFontRef CGFontRetain | ( | CGFontRef | font | ) |
Increment the retain count of ‘font’ and return it. All fonts are created with an initial retain count of 1. CGFontRetain()