/////////////////////// ///// FRBoolean.h ///// /////////////////////// #if !defined FR_BOOLEAN_H #define FR_BOOLEAN_H typedef int FRBoolean ; const FRBoolean FRTrue = 1; const FRBoolean FRFalse = 0; #endif //FR_BOOLEAN_H