home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / magazine / pcmagazi / 1992 / 13 / w31print.h < prev   
Text File  |  1992-04-25  |  518b  |  22 lines

  1. //
  2. // W31PRINT.H - structures and prototypes for Windows 3.1 printer API
  3. //
  4. // This header file should be included if you are still using 
  5. // the BC++ 3.0 WINDOWS.H header file, which is for Windows 3.0
  6. // 
  7.  
  8. typedef struct {
  9.     int cbSize;
  10.     LPSTR lpszDocName;
  11.     LPSTR lpszOutput;
  12. } DOCINFO;
  13.  
  14. int FAR PASCAL StartDoc(HDC, DOCINFO FAR *);
  15. int FAR PASCAL StartPage(HDC);
  16. int FAR PASCAL EndPage(HDC);
  17. int FAR PASCAL EndDoc(HDC);
  18. int FAR PASCAL SetAbortProc(HDC, FARPROC);
  19. int FAR PASCAL AbortDoc(HDC);
  20.  
  21.  
  22.