aboutsummaryrefslogtreecommitdiffstats
path: root/Game/Code/Classes/UPlatformWindows.pas
diff options
context:
space:
mode:
authoreddie-0815 <eddie-0815@b956fd51-792f-4845-bead-9b4dfca2ff2c>2007-11-08 21:21:20 +0000
committereddie-0815 <eddie-0815@b956fd51-792f-4845-bead-9b4dfca2ff2c>2007-11-08 21:21:20 +0000
commitb2a203f519a2a4d13ffdad2cedb9fcfa2d07db8b (patch)
treec01ab0bb5eb6b9c8dd438e424c88af7883edbbf9 /Game/Code/Classes/UPlatformWindows.pas
parent5b4785d36f83f3361f89b33c84839591969d24a6 (diff)
downloadusdx-b2a203f519a2a4d13ffdad2cedb9fcfa2d07db8b.tar.gz
usdx-b2a203f519a2a4d13ffdad2cedb9fcfa2d07db8b.tar.xz
usdx-b2a203f519a2a4d13ffdad2cedb9fcfa2d07db8b.zip
Move the TSearchRecW record to the implementation part. This should fix the compilation error.
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@598 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r--Game/Code/Classes/UPlatformWindows.pas19
1 files changed, 11 insertions, 8 deletions
diff --git a/Game/Code/Classes/UPlatformWindows.pas b/Game/Code/Classes/UPlatformWindows.pas
index c7965761..1786d6cc 100644
--- a/Game/Code/Classes/UPlatformWindows.pas
+++ b/Game/Code/Classes/UPlatformWindows.pas
@@ -12,6 +12,17 @@ uses Classes, UPlatform;
type
+ TPlatform = class(TInterfacedObject, IPlatform)
+ public
+ Function DirectoryFindFiles(Dir, Filter : WideString; ReturnAllSubDirs : Boolean) : TDirectoryEntryArray;
+ end;
+
+implementation
+
+uses SysUtils, Windows;
+
+type
+
TSearchRecW = record
Time: Integer;
Size: Integer;
@@ -22,14 +33,6 @@ type
FindData: TWin32FindDataW;
end;
- TPlatform = class(TInterfacedObject, IPlatform)
- public
- Function DirectoryFindFiles(Dir, Filter : WideString; ReturnAllSubDirs : Boolean) : TDirectoryEntryArray;
- end;
-
-implementation
-
-uses SysUtils, Windows;
function FindFirstW(const Path: widestring; Attr: Integer; var F: TSearchRecW): Integer;
const