diff options
Diffstat (limited to 'recordmydesktop/include')
-rw-r--r-- | recordmydesktop/include/rmdtypes.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/recordmydesktop/include/rmdtypes.h b/recordmydesktop/include/rmdtypes.h index 83dd0d9..db1e430 100644 --- a/recordmydesktop/include/rmdtypes.h +++ b/recordmydesktop/include/rmdtypes.h @@ -99,6 +99,11 @@ enum{ __PXL_AVERAGE //calculate the average of all four pixels }; +// Boolean type +typedef int boolean; +#define FALSE (0) +#define TRUE (!FALSE) + typedef struct _DisplaySpecs{ //this struct holds some basic information int screen; //about the display,needed mostly for unsigned int width; //validity checks at startup |