DLL을 로드할때 에러체크를 위해 다음과 같이 작성하였습니다.
try
//dll을 로드한다.
LibHandle:=LoadLibrary('start.dll');
//에러가 발생하면
if LibHandle=HINSTANCE_ERROR then
raise EDLLLoadError.Create('START.DLL을 열수가 없습니다.');
except
Application.Terminate;
end;
컴파일시 다음에러가 발생하는군요
[Error] Main.pas(123): Undeclared identifier: 'EDLLLoadError'
이유를 잘 모르겠어서.... 답변 부탁드립니다.