#IFNDEF __CONST_BI__ #DEFINE __CONST_BI__ 'OHRRPGCE GAME - shared constants '(C) Copyright 1997-2005 James Paige and Hamster Republic Productions 'Please read LICENSE.txt for GPL License details and disclaimer of liability 'See README.txt for code docs and apologies for crappyness of this code ;) ' '---For some crazy reason TRUE and FALSE don't work well as const even though they are not reserved CONST YES = -1 CONST NO = 0 '---DOS directory attributes CONST attribReadOnly = 1 CONST attribHidden = 2 CONST attribSystem = 4 CONST attribDirectory = 16 CONST attribArchive = 32 CONST attribReserved = 192 '64 OR 128 CONST attribAlmostAll = 237 ' All except directory and hidden #IF __FB_VERSION__ < "0.17" type intptr as integer #else type intptr as any ptr #endif EXTERN dpage EXTERN vpage #ENDIF