| Derived from | |
| Framework | CoreFoundation/CoreFoundation.h |
| Companion guide | |
| Declared in | CFNumber.h |
CFBoolean objects are used to wrap boolean values for use in Core Foundation property lists and collection types.
Returns the Core Foundation type identifier for the CFBoolean opaque type.
CFTypeID CFBooleanGetTypeID ( void );
The Core Foundation type identifier for CFBoolean opaque type.
CFNumber.hReturns the value of a CFBoolean object as a standard C type Boolean.
Boolean CFBooleanGetValue ( CFBooleanRef boolean );
The boolean to examine.
The value of boolean.
CFNumber.hA reference to a CFBoolean object.
typedef const struct __CFBoolean *CFBooleanRef;
CFBoolean objects are used to wrap boolean values for use in Core Foundation property lists and collection types.
CFNumber.hCFBoolean evaluates to either true or false values where kCFBooleanTrue is the true, and kCFBooleanFalse is the false value.
const CFBooleanRef kCFBooleanTrue; const CFBooleanRef kCFBooleanFalse;
kCFBooleanTrueBoolean true value.
Available in Mac OS X v10.0 and later.
Declared in CFNumber.h.
kCFBooleanFalseBoolean false value.
Available in Mac OS X v10.0 and later.
Declared in CFNumber.h.
Last updated: 2005-12-06