Thanks for making this package available. What's the license for using?
Initially, I failed to install teechart.lpk into Laz 1.0.10 / fpc 2.6.2 and into Laz-trunk / fpc 2.6.2, both Win32. The compiler complains in function NumberOfProcessors, unit TeeClustering, about PAfficinity being a QWORD, but expecting a LongWord. After changing this, the package compiles and runs fine.
function NumberOfProcessors:Integer;
{$IFDEF MSWINDOWS}
var t : Integer;
PAffinity,
// SAffinity: {$IFDEF D16}NativeUInt{$ELSE}{$IFDEF LCL}QWORD{$ELSE}DWORD{$ENDIF}{$ENDIF};
SAffinity: {$IFDEF D16}NativeUInt{$ELSE}{$IFDEF LCL}LongWord{$ELSE}DWORD{$ENDIF}{$ENDIF};
{$IFNDEF D16}
