소스 검색

* fixed definition of NSInteger and NSUInteger for 64 bit (fix by
Gorazd Krosl)

git-svn-id: trunk@14231 -

Jonas Maebe 16 년 전
부모
커밋
1900d12a0c
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      packages/cocoaint/src/foundation/NSObjCRuntime.inc

+ 2 - 2
packages/cocoaint/src/foundation/NSObjCRuntime.inc

@@ -50,8 +50,8 @@ const
 
 { Types }
 type
-  NSInteger = cint;
-  NSUInteger = cuint;
+  NSInteger = clong;
+  NSUInteger = culong;
   NSComparisonResult = NSInteger;
 
 {$endif}