From c2160a264804f9126a40014d7a0f843674b5a3a7 Mon Sep 17 00:00:00 2001 From: k-m_schindler Date: Thu, 22 May 2008 20:26:16 +0000 Subject: eol-style set and unified, no actual code change git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@1120 b956fd51-792f-4845-bead-9b4dfca2ff2c --- Game/Code/Classes/UPlatform.pas | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'Game') diff --git a/Game/Code/Classes/UPlatform.pas b/Game/Code/Classes/UPlatform.pas index d3227611..2c0fc6ee 100644 --- a/Game/Code/Classes/UPlatform.pas +++ b/Game/Code/Classes/UPlatform.pas @@ -18,17 +18,17 @@ uses Classes; type TDirectoryEntry = Record Name : WideString; - IsDirectory : Boolean; - IsFile : Boolean; + IsDirectory : boolean; + IsFile : boolean; end; - TDirectoryEntryArray = Array of TDirectoryEntry; + TDirectoryEntryArray = array of TDirectoryEntry; - IPlatform = Interface + IPlatform = interface ['{63A5EBC3-3F4D-4F23-8DFB-B5165FCA23DF}'] - Function DirectoryFindFiles(Dir, Filter : WideString; ReturnAllSubDirs : Boolean) : TDirectoryEntryArray; - function TerminateIfAlreadyRunning(var WndTitle : String) : Boolean; - function FindSongFile(Dir, Mask: widestring): widestring; + function DirectoryFindFiles(Dir, Filter : WideString; ReturnAllSubDirs : boolean) : TDirectoryEntryArray; + function TerminateIfAlreadyRunning(var WndTitle : string) : boolean; + function FindSongFile(Dir, Mask: WideString): WideString; procedure Halt; function GetLogPath : WideString; function GetGameSharedPath : WideString; @@ -60,7 +60,7 @@ var function Platform : IPlatform; begin - result := Platform_singleton; + result := Platform_singleton; end; -- cgit v1.2.3