Browse Source

* Define ISC_STATUS as clong, instead of longint

git-svn-id: trunk@8894 -
joost 18 years ago
parent
commit
0a9f618f09
1 changed files with 4 additions and 2 deletions
  1. 4 2
      packages/base/ibase/ibase60.inc

+ 4 - 2
packages/base/ibase/ibase60.inc

@@ -7,11 +7,13 @@
 interface
 
 {$IFDEF LinkDynamically}
-uses Dynlibs, sysutils;
+uses Dynlibs, sysutils,ctypes;
 
 Var
   UseEmbeddedFirebird : Boolean = False;
 
+{$ELSE}
+uses ctypes;
 {$ENDIF}
 
 {$IFDEF Unix}
@@ -66,7 +68,7 @@ type
 
 Type
    ISC_USHORT    = word;
-   ISC_STATUS    = longint;
+   ISC_STATUS    = clong;
    ISC_INT64     = int64;
    ISC_UINT64    = qword;
    ISC_LONG      = Longint;