|
@@ -423,7 +423,7 @@ type
|
|
|
|
|
|
tagNMDATETIMEWMKEYDOWNA = record
|
|
tagNMDATETIMEWMKEYDOWNA = record
|
|
nmhdr : NMHDR;
|
|
nmhdr : NMHDR;
|
|
- nVirtKey : integer;
|
|
|
|
|
|
+ nVirtKey : longint;
|
|
pszFormat : LPCSTR;
|
|
pszFormat : LPCSTR;
|
|
st : SYSTEMTIME;
|
|
st : SYSTEMTIME;
|
|
end;
|
|
end;
|
|
@@ -433,7 +433,7 @@ type
|
|
|
|
|
|
tagNMDATETIMEWMKEYDOWNW = record
|
|
tagNMDATETIMEWMKEYDOWNW = record
|
|
nmhdr : NMHDR;
|
|
nmhdr : NMHDR;
|
|
- nVirtKey : integer;
|
|
|
|
|
|
+ nVirtKey : longint;
|
|
pszFormat : LPCWSTR;
|
|
pszFormat : LPCWSTR;
|
|
st : SYSTEMTIME;
|
|
st : SYSTEMTIME;
|
|
end;
|
|
end;
|
|
@@ -522,7 +522,7 @@ type
|
|
TBBUTTONINFO=TBBUTTONINFOW;
|
|
TBBUTTONINFO=TBBUTTONINFOW;
|
|
TTBButtonInfo=TBBUTTONINFO;
|
|
TTBButtonInfo=TBBUTTONINFO;
|
|
|
|
|
|
- tagNMCUSTOMDRAWINFO = packed record
|
|
|
|
|
|
+ tagNMCUSTOMDRAWINFO = record
|
|
hdr: TNMHdr;
|
|
hdr: TNMHdr;
|
|
dwDrawStage: DWORD;
|
|
dwDrawStage: DWORD;
|
|
hdc: HDC;
|
|
hdc: HDC;
|
|
@@ -534,19 +534,19 @@ type
|
|
PNMCustomDraw = ^TNMCustomDraw;
|
|
PNMCustomDraw = ^TNMCustomDraw;
|
|
TNMCustomDraw = tagNMCUSTOMDRAWINFO;
|
|
TNMCustomDraw = tagNMCUSTOMDRAWINFO;
|
|
|
|
|
|
- tagNMLVCUSTOMDRAW = packed record
|
|
|
|
|
|
+ tagNMLVCUSTOMDRAW = record
|
|
nmcd: TNMCustomDraw;
|
|
nmcd: TNMCustomDraw;
|
|
clrText: COLORREF;
|
|
clrText: COLORREF;
|
|
clrTextBk: COLORREF;
|
|
clrTextBk: COLORREF;
|
|
- iSubItem: Integer;
|
|
|
|
|
|
+ iSubItem: longint;
|
|
end;
|
|
end;
|
|
PNMLVCustomDraw = ^TNMLVCustomDraw;
|
|
PNMLVCustomDraw = ^TNMLVCustomDraw;
|
|
TNMLVCustomDraw = tagNMLVCUSTOMDRAW;
|
|
TNMLVCustomDraw = tagNMLVCUSTOMDRAW;
|
|
|
|
|
|
- tagNMLVODSTATECHANGE = packed record
|
|
|
|
|
|
+ tagNMLVODSTATECHANGE = record
|
|
hdr: TNMHdr;
|
|
hdr: TNMHdr;
|
|
- iFrom: Integer;
|
|
|
|
- iTo: Integer;
|
|
|
|
|
|
+ iFrom: longint;
|
|
|
|
+ iTo: longint;
|
|
uNewState: UINT;
|
|
uNewState: UINT;
|
|
uOldState: UINT;
|
|
uOldState: UINT;
|
|
end;
|
|
end;
|