home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 Mobile / Chip_Mobile_2001.iso / palm / business / printcar / printcar.exe / src / IrDA / IrConstants.h < prev    next >
C/C++ Source or Header  |  2000-06-05  |  492b  |  32 lines

  1. //
  2. //  $Id: IrConstants.h,v 1.2 2000/06/04 23:23:37 sergey Exp $
  3. //
  4.  
  5. #ifndef _IrConstants_h_
  6. #define _IrConstants_h_
  7.  
  8.  
  9. // uncomment this to display IR layer debug info
  10. //#define IR_DEBUG
  11.  
  12.  
  13. namespace IrDA
  14. {
  15.     enum IrClassType
  16.     {
  17.         IrUnknownClass,
  18.         IrCommClass,
  19.         IrLptClass
  20.     };
  21.  
  22.     enum IrProtocolType
  23.     {
  24.         IrUnknownProtocol,
  25.         IrLmpProtocol,
  26.         IrTpProtocol
  27.     };
  28. }
  29. // namespace IrDA
  30.  
  31. #endif  // _IrConstants_h_
  32.