home *** CD-ROM | disk | FTP | other *** search
- /* wfc.h -- Top level include file for Windows for C
-
- ************* Copyright 1985 by Vermont Creative Software ***************
-
- VERSION: 4.14
- */
-
- /*----------------------------------------------------------------------------*/
- /* Only permit wfc.h to be #included one time. */
- /*----------------------------------------------------------------------------*/
- #ifndef WFC_VER
-
- /*----------------------------------------------------------------------------*/
- /* Define the version number of Windows for C */
- /*----------------------------------------------------------------------------*/
- #define WFC_VER "v4.14"
-
- /*----------------------------------------------------------------------------*/
- /* Implement Logical Attributes as the default */
- /* To use physical attributes, comment out the following #define */
- /*----------------------------------------------------------------------------*/
- #define ATT_LOGIC
-
- /*----------------------------------------------------------------------------*/
- /* Include compiler definition header file */
- /*----------------------------------------------------------------------------*/
- #include <wfc_comp.h>
-
- /*----------------------------------------------------------------------------*/
- /* Linked list definitions */
- /*----------------------------------------------------------------------------*/
- #include <llist.h>
-
- /*----------------------------------------------------------------------------*/
- /* Computer/terminal specific definitions */
- /*----------------------------------------------------------------------------*/
- #include <computer.h>
-
- /*----------------------------------------------------------------------------*/
- /* Logical attribute definitions */
- /*----------------------------------------------------------------------------*/
- #include <def_att.h>
-
- /*----------------------------------------------------------------------------*/
- /* Standard WFC and WFD error codes definitions */
- /*----------------------------------------------------------------------------*/
- #include <wn_msgd.h>
-
- /*----------------------------------------------------------------------------*/
- /* Windows for C definitions */
- /*----------------------------------------------------------------------------*/
- #include <wfc_defs.h>
-
- /*----------------------------------------------------------------------------*/
- /* Windows for C structures */
- /*----------------------------------------------------------------------------*/
- #include <wfc_stru.h>
-
- /*----------------------------------------------------------------------------*/
- /* External variables */
- /*----------------------------------------------------------------------------*/
- #include <wfc_xtrn.h>
-
- /*----------------------------------------------------------------------------*/
- /* Historical functions and definitions */
- /* */
- /* Existing users of WFC may wish to define the symbol WN_HISTORY before */
- /* #include'ing wfc.h. When this symbol is defined, we will pull in the */
- /* header file that provides support for "archaic" functions. */
- /*----------------------------------------------------------------------------*/
- #ifdef WN_HISTORY
- #include <wfc_hist.h>
- #endif
-
- #endif