home *** CD-ROM | disk | FTP | other *** search
/ Stars of Shareware: Programmierung / SOURCE.mdf / programm / msdos / pascal / ipxlib / ipxcfg.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-01  |  1.4 KB  |  28 lines

  1. // IPXCFG.H -- IPXLIB configuration parameters
  2. // by Allen Brunson  06/01/94
  3.  
  4.  
  5. #ifndef _IPXCFG_H                                  // If not already included
  6. #define _IPXCFG_H                                  // Define this file
  7.  
  8.  
  9. /****************************************************************************/
  10. /*                                                                          */
  11. /***  IPX configuration parameters                                        ***/
  12. /*                                                                          */
  13. /****************************************************************************
  14.  
  15. It is suggested that you make a copy of this file for each project that will
  16. use IPXLIB and set the values below based on the needs of your program, then
  17. include this file in any module that will be calling the IPXLIB routines.
  18. See the documentation for information on setting these defines properly.    */
  19.  
  20. #define  IPXSOCKET        0x51E7                   // Socket number
  21. #define  IPXHOPS               3                   // Maximum hops to others
  22. #define  IPXRECVCNT           20                   // Receive packet buffers
  23. #define  IPXSENDCNT            8                   // Send packet buffers
  24. #define  IPXDATASIZE         256                   // Data bytes per packet
  25.  
  26.  
  27. #endif                                             // End of _IPXCFG_H
  28.