home *** CD-ROM | disk | FTP | other *** search
- /*========================================================*/
- /* NETPRINT.H */
- /* Header-File für NETPRINT.C */
- /* (c) Wolfgang Thiel & DMV-Verlag */
- /*========================================================*/
-
- #ifndef __NETPRINT_H
- #define __NETPRINT_H
-
- #ifndef __STDIO_H
- #include <stdio.h>
- #endif
-
- #ifndef __STDLIB_H
- #include <stdlib.h>
- #endif
- // File-Variablen
- FILE *LPT1, *LPT2, *LPT3, *LST, *PRN;
- // Prototypen
- void Start_LST();
- void Start_PRN();
- void Start_LPT1();
- void Start_LPT2();
- void Start_LPT3();
- int Install_LPT2();
- int Install_LPT3();
- void Kill_LPT2();
- void Kill_LPT3();
-
- #endif
-
- /*========================================================*/
- /* Ende von NETPRINT.H */
-