home *** CD-ROM | disk | FTP | other *** search
/ World of Shareware - Software Farm 2 / wosw_2.zip / wosw_2 / CPROG / ISC366.ZIP / SERIAL / PUBLIC.H < prev    next >
Text File  |  1993-09-01  |  2KB  |  31 lines

  1. ///////////////////////////////////////////////////////////////////////////
  2. //                                                                       //
  3. //            File: Public.h                                             //
  4. //                  (project version).                                   //
  5. //                                                                       //
  6. //            started on: 5/2/92                                         //
  7. //                                                                       //
  8. ///////////////////////////////////////////////////////////////////////////
  9. //                                                                       //
  10. //  This file contains all SERIAL++ public declarations. Basic types     //
  11. //  and enumerations.                                                    //
  12. //                                                                       //
  13. ///////////////////////////////////////////////////////////////////////////
  14. //                                                                       //
  15. //                    by Ofer Laor (AKA LeucroTTA)                       //
  16. //                                                                       //
  17. ///////////////////////////////////////////////////////////////////////////
  18.  
  19. #ifndef __PUBLIC_H
  20. #define __PUBLIC_H
  21.  
  22. #include <_NULL.h> ; // NULL
  23.  
  24. typedef  unsigned char     BYTE;
  25. typedef  unsigned          INDEX;
  26.  
  27. enum BOOLEAN {FALSE= 0, TRUE};
  28. enum OPERATION {OP_FAILURE= 0, OP_SUCCESSFUL};
  29.  
  30. #endif /* __PUBLIC_H */
  31.