* fix mantis #28420, extreme corner case.

git-svn-id: trunk@31283 -
This commit is contained in:
marco 2015-08-05 13:10:49 +00:00
parent 7753417631
commit 3c30a9b6d1

View File

@ -29,10 +29,10 @@ type
POleStr = Types.POleStr;
PPOleStr = Types.PPOleStr;
TBStr = POleStr;
TBStrList = array[0..(high(integer) div sizeof(TBSTR))-1] of TBstr;
TBStrList = array[0..65535] of TBstr;
PBStrList = ^TBStrList;
POleStrList = ^TOleStrList;
TOleStrList = array[0..(high(integer) div sizeof(POleStr))-1] of POleStr;
TOleStrList = array[0..65535] of POleStr;
PBStr = ^TBStr;
TOleEnum = type LongWord;