Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
731 B

  1. #ifndef H_MAD_TIMING_H
  2. #define H_MAD_TIMING_H
  3. #define MM_FEAT 0
  4. #define MM_NET 1
  5. #define MM_BEAM 2
  6. #define MM_HMM 3
  7. #define MM_PP 4
  8. #define MM_TOT 5
  9. #define MM_BEAM_LM_WALK 6
  10. #define MM_BEAM_HARVEST 7
  11. #define MM_OUTDICT 8
  12. #define MM_RESWRDBRK 9
  13. #define MM_RECOG_WHOLE_WORD 10
  14. #define MM_CMPWRDBRK 11
  15. #define MM_RUN_AVAL 12
  16. #define MM_CALLIG 13
  17. #define MM_CALLIG_PHRASE 14
  18. #define MM_CALLIG_WORD 15
  19. #define MM_INF 16
  20. #define MM_INF_PHRASE 17
  21. #define MM_INF_WORD 18
  22. #define MM_GEO_ALT 19
  23. #define MM_GEO_PLAIN 20
  24. #define MM_XR_NET 21
  25. #define MM_MULT_SEG_FEAT 22
  26. #define MM_CNT 23
  27. typedef struct tagMAD_TIMING
  28. {
  29. DWORD dTime[MM_CNT]; // Times
  30. DWORD dCnt[MM_CNT];
  31. } MAD_TIMING;
  32. #endif