You've already forked lazarus-ccr
Duration's fields : Fix Integer/Cardinal instead of PtrInt/PtrUInt (Thanks Juha)
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@3860 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -34,13 +34,13 @@ type
|
||||
end;
|
||||
|
||||
TDurationRec = packed record
|
||||
Year : PtrUInt;
|
||||
Month : PtrUInt;
|
||||
Day : PtrUInt;
|
||||
Hour : PtrUInt;
|
||||
Minute : PtrUInt;
|
||||
Second : PtrUInt;
|
||||
FractionalSecond : PtrUInt;
|
||||
Year : Cardinal;
|
||||
Month : Cardinal;
|
||||
Day : Cardinal;
|
||||
Hour : Cardinal;
|
||||
Minute : Cardinal;
|
||||
Second : Cardinal;
|
||||
FractionalSecond : Cardinal;
|
||||
Negative : Boolean;
|
||||
end;
|
||||
|
||||
|
Reference in New Issue
Block a user