home *** CD-ROM | disk | FTP | other *** search
- ' COPYRIGHT:
- '
- ' (C) Copyright Microsoft Corp. 1993. All rights reserved.
- '
- ' You have a royalty-free right to use, modify, reproduce and
- ' distribute the Sample Files (and/or any modified version) in
- ' any way you find useful, provided that you agree that
- ' Microsoft has no warranty obligations or liability for any
- ' Sample Application Files which are modified.
- '
- ' Print DLL Function Declarations
-
- Declare Function InitializePrinter Lib "vbprint.dll" (ByVal hWnd%) As Integer
- Declare Function PrinterSetup Lib "vbprint.dll" (ByVal hWnd%) As Integer
- Declare Function PageLayoutSetup Lib "vbprint.dll" (ByVal nTop%, ByVal nRight%, ByVal nBottom%, ByVal nLeft%) As Integer
- Declare Function DonePrinting Lib "vbprint.dll" () As Integer
- Declare Function StartParagraph Lib "vbprint.dll" (ByVal szFontName$, ByVal nFontSize%, ByVal nStyle%) As Integer
- Declare Function FinishParagraph Lib "vbprint.dll" () As Integer
- Declare Function PrintHeadline Lib "vbprint.dll" (ByVal szHeadLine$, ByVal szFontName$, ByVal nFontSize%, ByVal nStyle%) As Integer
- Declare Function ParagraphText Lib "vbprint.dll" (ByVal szText$) As Integer
- Declare Function EjectPage Lib "vbprint.dll" () As Integer
- Declare Function PrintDLLVersion Lib "vbprint.dll" () As Integer
- Declare Function SetParagraphSpacing Lib "vbprint.dll" (ByVal nSpacingBefore%, ByVal nSpacingAfter%) As Integer
- Declare Function SetUpColumns Lib "vbprint.dll" (ByVal Columns%, nC As Any, ByVal szFontName$, ByVal nFontSize%, ByVal nStyle%) As Integer
- Declare Function PrintColumnText Lib "vbprint.dll" (ByVal szText$) As Integer
- Declare Function EndColumnPrinting Lib "vbprint.dll" () As Integer
- Declare Function PrintColumnHeaders Lib "vbprint.dll" (ByVal szHeader$, ByVal Columns%, nC As Any, ByVal szFontName$, ByVal nFontSize%, ByVal nStyle%) As Integer
- Declare Function KillJob Lib "vbprint.dll" () As Integer
- Declare Function PrinterPort Lib "vbprint.dll" (ByVal szPort$) As Integer
- Declare Function PrinterName Lib "vbprint.dll" (ByVal s$) As Integer
- Declare Function PageSizeY Lib "vbprint.dll" () As Integer
- Declare Function PageSizeX Lib "vbprint.dll" () As Integer
- Declare Function DrawLine Lib "vbprint.dll" (ByVal X1%, ByVal Y1%, ByVal X2%, ByVal Y2%) As Integer
- Declare Function DrawRectangle Lib "vbprint.dll" (ByVal X1%, ByVal Y1%, ByVal X2%, ByVal Y2%) As Integer
- Declare Function DrawRndRectangle Lib "vbprint.dll" (ByVal X1%, ByVal Y1%, ByVal X2%, ByVal Y2%, ByVal X3%, ByVal y3%) As Integer
- Declare Function DrawEllipse Lib "vbprint.dll" (ByVal X1%, ByVal Y1%, ByVal X2%, ByVal Y2%) As Integer
- Declare Function MoveYPos Lib "vbprint.dll" (ByVal nY%) As Integer
-
-