안녕하세요!
dll 함수를 선언을 할때 dll path를 지정해서 선언 할 수 있는 방법을 알려주세요!
가령 예를 들면
Function Fexample(): Integer; external 'example.dll' name 'example';
위 선언에서 example.dll를 sub directory 'subdir'로 옮겨서 선언할 때
path를 지정해서
Function Fexample(): Integer; external '...\subdir\example.dll' name 'example';
로 실행해보니 access violation error가 발생하더군요 어떻게 하면 해결
할 수 있나요.
답변 부탁드립니다.