Application Programming Interface (API)Win32 Interface (such as LabWindows CVI)'C' Defined Types bool Used for generic boolean variables. Possible values: 0 = false 1 = true The 'C' code definition is: #ifndef __cplusplustypedef enum { false = 0, true = 1 } bool;#endif /* __cplusplus */