VC++에서 만든 ocx를 import type library로 create unit을 했는데
제가 이용할 함수명이 보이지 않더군요.
몇가지 검색을 해서 export symbol을 다음과 같이 넣어줘 봤지만 보이지 않습니다.
extern "C" __declspec(dllexport) bool __cdecl Test()
그래서 결국
function Test():boolean; cdecl; external'Test.ocx';
이런식으로 이용을 했습니다.
import type library를 이용해서 제가 만든 함수를 이용할 수 없을까요?