forked from dstd/HtmlayoutDelphi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHtmlTypes.pas
35 lines (25 loc) · 804 Bytes
/
HtmlTypes.pas
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
unit HtmlTypes;
(*
HTMLayout License terms could be found here http://www.terrainformatica.com/htmlayout/prices.whtm
SDK - http://www.terrainformatica.com/htmlayout/HTMLayoutSDK.zip
Delphi binding of HTMLayout published under LGPL. Visit https://github.com/Keksov/HtmlayoutDelphi
*)
interface
{$IFDEF USER_DEFINES_INC}{$I user_defines.inc}{$ENDIF}
uses Windows;
type
// It's really a pointer - HELEMENT = Pointer. Class is used here for detection of logical errors during compilation.
HELEMENT = class end;
PHELEMENT = ^HELEMENT;
LPCBYTE = PCHAR;
INT_PTR = ^integer;
LPVOID = Pointer;
PLPVOID = ^LPVOID;
LPINT = ^integer;
LPBOOL = PBOOL;
LPNMHDR = PNMHDR;
UINT_PTR = ^cardinal;
LPUINT = UINT_PTR;
PRECT = ^TRECT;
implementation
end.