diff options
author | jaybinks <jaybinks@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2007-11-03 02:31:06 +0000 |
---|---|---|
committer | jaybinks <jaybinks@b956fd51-792f-4845-bead-9b4dfca2ff2c> | 2007-11-03 02:31:06 +0000 |
commit | 8c9c787a1326b90490543bd50b56fce9b89d9807 (patch) | |
tree | 23b90b09a1a05d3dd8db21ff3ac7b14361018b63 /Modis/SDK | |
parent | 2a1be1865f68633a2385d8e55a6bd815616ec23f (diff) | |
download | usdx-8c9c787a1326b90490543bd50b56fce9b89d9807.tar.gz usdx-8c9c787a1326b90490543bd50b56fce9b89d9807.tar.xz usdx-8c9c787a1326b90490543bd50b56fce9b89d9807.zip |
Windows Lazarus Build working again...
Lazarus Project file includes the DPR, so
that we have a unified Uses Clause ( keep this in mind please )
added "Delphi" to switches
git-svn-id: svn://svn.code.sf.net/p/ultrastardx/svn/trunk@560 b956fd51-792f-4845-bead-9b4dfca2ff2c
Diffstat (limited to '')
-rw-r--r-- | Modis/SDK/ModiSDK.pas | 4 | ||||
-rw-r--r-- | Modis/SDK/UPartyDefs.pas | 4 | ||||
-rw-r--r-- | Modis/SDK/UPluginDefs.pas | 4 |
3 files changed, 12 insertions, 0 deletions
diff --git a/Modis/SDK/ModiSDK.pas b/Modis/SDK/ModiSDK.pas index 4423502c..7cc3ef1a 100644 --- a/Modis/SDK/ModiSDK.pas +++ b/Modis/SDK/ModiSDK.pas @@ -2,6 +2,10 @@ unit ModiSDK; interface
+{$IFDEF FPC}
+ {$MODE Delphi}
+{$ENDIF}
+
{$I switches.inc}
type //PluginInfo, for Init
diff --git a/Modis/SDK/UPartyDefs.pas b/Modis/SDK/UPartyDefs.pas index bbe933c6..78b04bdd 100644 --- a/Modis/SDK/UPartyDefs.pas +++ b/Modis/SDK/UPartyDefs.pas @@ -7,6 +7,10 @@ unit UPartyDefs; interface
+{$IFDEF FPC}
+ {$MODE Delphi}
+{$ENDIF}
+
{$I switches.inc}
uses UPluginDefs;
diff --git a/Modis/SDK/UPluginDefs.pas b/Modis/SDK/UPluginDefs.pas index 4e1ea36b..f0a68fa9 100644 --- a/Modis/SDK/UPluginDefs.pas +++ b/Modis/SDK/UPluginDefs.pas @@ -7,6 +7,10 @@ unit uPluginDefs; interface
+{$IFDEF FPC}
+ {$MODE Delphi}
+{$ENDIF}
+
{$I switches.inc}
type
|