소스 검색

64-Bit exceptions, Delphi 6 compatibility types in define

master
saschawillems 11 년 전
부모
커밋
37834ffc49
1개의 변경된 파일8개의 추가작업 그리고 5개의 파일을 삭제
  1. +8
    -5
      dglOpenGL.pas

+ 8
- 5
dglOpenGL.pas 파일 보기

@@ -181,9 +181,11 @@ uses
;

type
// Needed for Delphi 6 and less (defined in system.pas for Delphi 7)
PPointer = ^Pointer;
PCardinal = ^Cardinal;
{$IFDEF DELPHI6_AND_DOWN}
// Delphi 6 compatibility
PPointer = ^Pointer;
PCardinal = ^Cardinal;
{$ENDIF}

GLenum = Cardinal;
GLboolean = BYTEBOOL;
@@ -20325,11 +20327,12 @@ initialization

{$IFDEF CPU386}
Set8087CW($133F);
{$IFDEF DGL_64BIT}
{$ENDIF}
{$IFDEF DGL_64BIT}
SetExceptionMask([exInvalidOp, exDenormalized, exZeroDivide,exOverflow, exUnderflow, exPrecision]);
{$ENDIF}
{$ENDIF}


finalization

end.


불러오는 중...
취소
저장