Skip to content
Snippets Groups Projects
FRBoolean.h 226 B
Newer Older
  • Learn to ignore specific revisions
  • Whitney Armstrong's avatar
    Whitney Armstrong committed
    ///////////////////////
    ///// 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