home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c003 / 1.ddi / WFC.H < prev    next >
Encoding:
C/C++ Source or Header  |  1987-05-06  |  3.3 KB  |  76 lines

  1. /* wfc.h -- Top level include file for Windows for C
  2.  
  3.     ************* Copyright 1985 by Vermont Creative Software ***************
  4.  
  5. VERSION: 4.14
  6. */
  7.  
  8. /*----------------------------------------------------------------------------*/
  9. /*  Only permit wfc.h to be #included one time.                   */
  10. /*----------------------------------------------------------------------------*/
  11. #ifndef WFC_VER
  12.  
  13. /*----------------------------------------------------------------------------*/
  14. /*  Define the version number of Windows for C                      */
  15. /*----------------------------------------------------------------------------*/
  16. #define WFC_VER "v4.14"
  17.  
  18. /*----------------------------------------------------------------------------*/
  19. /* Implement Logical Attributes as the default                      */
  20. /* To use physical attributes, comment out the following #define          */
  21. /*----------------------------------------------------------------------------*/
  22. #define ATT_LOGIC
  23.  
  24. /*----------------------------------------------------------------------------*/
  25. /*  Include compiler definition header file                      */
  26. /*----------------------------------------------------------------------------*/
  27. #include <wfc_comp.h>
  28.  
  29. /*----------------------------------------------------------------------------*/
  30. /*  Linked list definitions                              */
  31. /*----------------------------------------------------------------------------*/
  32. #include <llist.h>
  33.  
  34. /*----------------------------------------------------------------------------*/
  35. /*  Computer/terminal specific definitions                      */
  36. /*----------------------------------------------------------------------------*/
  37. #include <computer.h>
  38.  
  39. /*----------------------------------------------------------------------------*/
  40. /*  Logical attribute definitions                          */
  41. /*----------------------------------------------------------------------------*/
  42. #include <def_att.h>
  43.  
  44. /*----------------------------------------------------------------------------*/
  45. /*  Standard WFC and WFD error codes definitions                  */
  46. /*----------------------------------------------------------------------------*/
  47. #include <wn_msgd.h>
  48.  
  49. /*----------------------------------------------------------------------------*/
  50. /*  Windows for C definitions                              */
  51. /*----------------------------------------------------------------------------*/
  52. #include <wfc_defs.h>
  53.  
  54. /*----------------------------------------------------------------------------*/
  55. /*  Windows for C structures                              */
  56. /*----------------------------------------------------------------------------*/
  57. #include <wfc_stru.h>
  58.  
  59. /*----------------------------------------------------------------------------*/
  60. /*  External variables                                  */
  61. /*----------------------------------------------------------------------------*/
  62. #include <wfc_xtrn.h>
  63.  
  64. /*----------------------------------------------------------------------------*/
  65. /*  Historical functions and definitions                      */
  66. /*                                          */
  67. /*  Existing users of WFC may wish to define the symbol WN_HISTORY before     */
  68. /*  #include'ing wfc.h.  When this symbol is defined, we will pull in the     */
  69. /*  header file that provides support for "archaic" functions.                */
  70. /*----------------------------------------------------------------------------*/
  71. #ifdef WN_HISTORY
  72. #include <wfc_hist.h>
  73. #endif
  74.  
  75. #endif
  76.