gendef.h
上传用户:fy98168
上传日期:2015-06-26
资源大小:13771k
文件大小:2k
源码类别:

DVD

开发平台:

C/C++

  1. #ifndef __GENDEF_H__
  2. #define __GENDEF_H__
  3. #include "sttbx.h"
  4. #ifndef  INT8
  5. typedef signed char INT8;
  6. #endif
  7. #ifndef  UINT8
  8. typedef unsigned char UINT8;
  9. #endif
  10. #ifndef  INT16
  11. typedef short INT16;
  12. #endif
  13. #ifndef  UINT16
  14. typedef unsigned short UINT16;
  15. #endif
  16. #ifndef  INT32
  17. typedef signed long INT32;
  18. #endif
  19. #ifndef  UINT32
  20. typedef unsigned long UINT32;
  21. #endif
  22. #ifndef BYTE
  23. typedef unsigned char BYTE;
  24. #endif
  25. #ifndef WORD
  26. typedef unsigned short WORD;
  27. #endif
  28. #ifndef DWORD
  29. typedef unsigned long DWORD;
  30. #endif
  31. #ifndef RetValue
  32. typedef INT32 RetValue;
  33. #endif
  34. #ifndef FALSE
  35. #define FALSE (0)
  36. #endif
  37. #ifndef TRUE
  38. #define TRUE (1)
  39. #endif
  40. #ifndef NULL
  41. #define NULL (0)
  42. #endif
  43. #ifndef RETOK
  44. #define RETOK (0)
  45. #endif
  46. #ifndef RETFIAL1
  47. #define RETFIAL1 (-1)
  48. #endif
  49. #ifndef RETFAIL2
  50. #define RETFAIL2 (-2)
  51. #endif
  52. #ifndef RETFAIL3
  53. #define RETFAIL3 (-3)
  54. #endif
  55. #ifndef RETFAIL4
  56. #define RETFAIL4 (-4)
  57. #endif
  58. #ifndef STTBX_PRINT
  59. #define STTBX_PRINT 
  60. #endif
  61. extern printf(const char *format,...); 
  62. #ifndef  Print
  63. #define Print printf
  64. #endif
  65. #define DBGError KB_ErrorGetText
  66. #define DBGPrint Print
  67. //for yyj test
  68. #define myprintf Print
  69. #define DMX_PRIORITY (7*16)
  70. #define FP_PRIORITY (4*16)
  71. #define SIPSI_PRIORITY (6*16)
  72. #define MENU_PRIORITY (6*16)
  73. #define EPG_PRIORITY          (5*16)
  74. #define IRC_PRIORITY (5*16)
  75. #define TIM_PRIORITY (5*16)
  76. #define SYSPOWER_PRIORITY (5*16)
  77. #define DMD_PRIORITY (4*16)
  78. #define PLAY_PRIORITY (4*16)
  79. #define GIF_PRIORITY (3*16)
  80. #define SCROLL_PRIORITY (2*16)
  81. #define CA_PRIORITY          (5*16)/*  set 4  :  from menu to play default play station is not die */
  82. #define SEARCH_PRIORITY (3*16)
  83. #endif