git-svn-id: https://svn.code.sf.net/p/kolmck/code@9 91bb2d04-0c0c-4d2d-88a5-bbb6f4c1fa07

This commit is contained in:
dkolmck
2009-08-06 14:32:07 +00:00
parent a2d3cece16
commit c41d6e135c
59 changed files with 75348 additions and 0 deletions

30
Addons/KOLPrintCommon.pas Normal file
View 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.