BOOL: Difference between revisions
Appearance
m Format |
|||
(7 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
Boolean | |||
==Type== | |||
unsigned long | |||
== | ==C Declaration Method== | ||
typedef unsigned | |||
unsigned long | ==Comment== | ||
Values are: | |||
*[[TRUE]], which is 1 | |||
*[[FALSE]], which is 0 | |||
==Example== | |||
typedef unsigned long BOOL; | |||
==== | ==PBOOL== | ||
Pointer to BOOL | |||
typedef BOOL *PBOOL; | |||
[[Category:Data type]] | |||