txtdebug.c
上传用户:xiaoan1112
上传日期:2013-04-11
资源大小:19621k
文件大小:1k
源码类别:

操作系统开发

开发平台:

Visual C++

  1. /*==========================================================================
  2. *
  3. *  Module:  txtdebug.c
  4. *  System:  Quick BASIC Interpreter
  5. *  Subsystem:  Text Manager
  6. *
  7. *=========================================================================*/
  8. #include "version.h"
  9. #if !CONINT_H
  10. # include "conint.h"
  11. #endif
  12. #if !CONTEXT_H
  13. # include "context.h"
  14. #endif
  15. #if !OPTABLES_H
  16. # include "optables.h"
  17. #endif
  18. #if !OPCODES_H
  19. # include "opcodes.h"
  20. #endif
  21. #if !PARSER_H
  22. # include "parser.h"
  23. #endif
  24. #if !PRSTAB_H
  25. # include "prstab.h"
  26. #endif
  27. #if !QBIMSGS_H
  28. # include "qbimsgs.h"
  29. #endif
  30. #if !RTINTERP_H
  31. # include "rtinterp.h" /* only needed for DebChkStruct() */
  32. #endif
  33. #if !SCANNER_H
  34. # include "scanner.h"
  35. #endif
  36. #if !TXTINT_H
  37. # include "txtint.h"
  38. #endif
  39. #if !TXTMGR_H
  40. # include "txtmgr.h"
  41. #endif
  42. #if !UI_H
  43. # include "ui.h"
  44. #endif
  45. #if !VARIABLE_H
  46. # include "variable.h" /* only needed for DebChkStruct() */
  47. #endif