home *** CD-ROM | disk | FTP | other *** search
/ Turbo Toolbox / Turbo_Toolbox.iso / dtx9303 / netz / netprint / netprint.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-06-02  |  955 b   |  34 lines

  1. /*========================================================*/
  2. /*                      NETPRINT.H                        */
  3. /*              Header-File  für NETPRINT.C               */
  4. /*            (c) Wolfgang Thiel & DMV-Verlag             */
  5. /*========================================================*/
  6.  
  7. #ifndef __NETPRINT_H
  8. #define __NETPRINT_H
  9.  
  10. #ifndef __STDIO_H
  11.   #include <stdio.h>
  12. #endif
  13.  
  14. #ifndef __STDLIB_H
  15.   #include <stdlib.h>
  16. #endif
  17.                                            // File-Variablen
  18.   FILE *LPT1, *LPT2, *LPT3, *LST, *PRN;
  19.                                            // Prototypen
  20.   void Start_LST();
  21.   void Start_PRN();
  22.   void Start_LPT1();
  23.   void Start_LPT2();
  24.   void Start_LPT3();
  25.   int  Install_LPT2();
  26.   int  Install_LPT3();
  27.   void Kill_LPT2();
  28.   void Kill_LPT3();
  29.  
  30. #endif
  31.  
  32. /*========================================================*/
  33. /*                   Ende von NETPRINT.H                  */
  34.