git-svn-id: https://svn.code.sf.net/p/kolmck/code@9 91bb2d04-0c0c-4d2d-88a5-bbb6f4c1fa07
This commit is contained in:
30
Addons/KOLPrintCommon.pas
Normal file
30
Addons/KOLPrintCommon.pas
Normal file
@ -0,0 +1,30 @@
|
||||
unit KOLPrintCommon;
|
||||
{*}
|
||||
|
||||
interface
|
||||
|
||||
uses Windows;
|
||||
|
||||
type
|
||||
PDevNames = ^tagDEVNAMES;
|
||||
tagDEVNAMES = packed record
|
||||
wDriverOffset: Word;
|
||||
wDeviceOffset: Word;
|
||||
wOutputOffset: Word;
|
||||
wDefault: Word;
|
||||
end;
|
||||
|
||||
PPrinterInfo = ^TPrinterInfo;
|
||||
TPrinterInfo = packed record
|
||||
{* Used for transferring information between Print/Page dialogs and TKOLPrinter.This way TKOLPrinter and Print/Page dialogs could be used separately}
|
||||
ADevice : PChar;
|
||||
ADriver : PChar;
|
||||
APort : PChar;
|
||||
ADevMode : THandle;
|
||||
end;
|
||||
|
||||
|
||||
implementation
|
||||
|
||||
end.
|
||||
|
Reference in New Issue
Block a user