From 83d29760eee6d65b87dd2213d125eb08de390aa6 Mon Sep 17 00:00:00 2001 From: inoussa Date: Sat, 27 Feb 2010 15:06:36 +0000 Subject: [PATCH] Define TByteDynArray as Types.TByteDynArray git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@1168 8e941d3f-bd1b-0410-a28a-d453659cc2b4 --- wst/trunk/wst_types.pas | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/wst/trunk/wst_types.pas b/wst/trunk/wst_types.pas index 33f0fd1b8..85cd5f24f 100644 --- a/wst/trunk/wst_types.pas +++ b/wst/trunk/wst_types.pas @@ -14,6 +14,8 @@ unit wst_types; interface +uses + Types; {$INCLUDE wst.inc} {$INCLUDE wst_delphi.inc} @@ -27,7 +29,7 @@ type TBinaryString = ansistring; {$ENDIF} - TByteDynArray = array of Byte; + TByteDynArray = Types.TByteDynArray; { TDataObject }