{$IfDef VERD2D3}
Type LargeInt = Comp;
Type pLargeInt = ^Comp;
{$EndIf}
{$IfDef VERD4+}
Type LargeInt = Int64;
Type pLargeInt = ^Int64;
{$EndIf}
위와 같이 LargeInt, pLargeInt가 선언되어 있는데 소스 내에서 'Undeclared identifier. 'LargeInt'' , 'Undeclared identifier.'pLargeInt''와 같이 에러가 발생합니다. 저는 델파이 7을 사용중이고 분석중인 소스는 델파이 5에서 작성된것인데 그 차이 때문에 그런것인지...더 추가해야 하는 부분이 있는것인지 알려주십이요~ 부탁해요