home *** CD-ROM | disk | FTP | other *** search
- /*DDK*************************************************************************/
- /* */
- /* COPYRIGHT Copyright (C) 1995 IBM Corporation */
- /* */
- /* The following IBM OS/2 WARP source code is provided to you solely for */
- /* the purpose of assisting you in your development of OS/2 WARP device */
- /* drivers. You may use this code in accordance with the IBM License */
- /* Agreement provided in the IBM Device Driver Source Kit for OS/2. This */
- /* Copyright statement may not be removed. */
- /* */
- /*****************************************************************************/
- /**************************************************************************
- *
- * SOURCE FILE NAME = CONFIG.H
- *
- * DESCRIPTIVE NAME =
- *
- *
- * VERSION =
- *
- * DATE
- *
- * DESCRIPTION This file contains constant definitions, type definitions,
- * and prototypes for functions found in config.c.
- *
- * FUNCTIONS
- *
- * ENTRY POINTS:
- *
- * DEPENDENCIES:
- *
- * NOTES
- *
- *
- * STRUCTURES
- *
- * EXTERNAL REFERENCES
- *
- * EXTERNAL FUNCTIONS
- *
- */
-
- /*
- ** constant definitions
- */
- #define MAX_NUM_IO_ADDRESSES 4
- #define MAX_NUM_OF_SOCKETS 8
-
- /*
- ** type definitions
- */
- typedef struct {
- USHORT num_of_io_addresses;
- USHORT com_port_num[MAX_NUM_IO_ADDRESSES];
- USHORT io_address[MAX_NUM_IO_ADDRESSES];
- USHORT irq_num[MAX_NUM_IO_ADDRESSES];
- } CONFIG_INFO;
-
- /*
- ** function prototypes
- */
- short store_config_info(short, char **, USHORT);
-