diff options
Diffstat (limited to 'include/delphi/m_clc.inc')
-rw-r--r-- | include/delphi/m_clc.inc | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/include/delphi/m_clc.inc b/include/delphi/m_clc.inc index c86315c9ac..08efd25d66 100644 --- a/include/delphi/m_clc.inc +++ b/include/delphi/m_clc.inc @@ -218,18 +218,18 @@ type TCLCINFOITEM = record
cbSize : int;
pszText : TChar;
- hParentGroup: THandle;
- flags : DWORD;
+ hParentGroup: THANDLE;
+ flags : dword;
hIcon : HICON; // todo
end;
PNMCLISTCONTROL = ^TNMCLISTCONTROL;
TNMCLISTCONTROL = record
hdr : TNMHDR; // depends on Windows.pas
- hItem : THandle;
+ hItem : THANDLE;
action : int;
iColumn: int; // -1 if not on an extra column
- flags : DWORD;
+ flags : dword;
pt : TPoint; // depends on Windows.pas
end;
@@ -303,4 +303,4 @@ const }
MS_CLC_GETINFOTIPHOVERTIME:PAnsiChar = 'CLC/GetInfoTipHoverTime';
-{$ENDIF}
\ No newline at end of file +{$ENDIF}
|