Q&A

  • VC++에서 개발한 DLL을 델파이에서 사용가능 여부
안녕하세요?

다름아니라,
VC++6.0에서 개발한 DLL을 델파이에서 사용이 가능합니까?
또, 반대로도 가능합니까?
가능하다면, 어떤식으로 해야 하나요?
아니면 그냥 상관없이 써도 관계가 없나요?

고수들의 답변 부탁...
1  COMMENTS
  • Profile
    이추형 2003.11.04 03:10
    참조하셔요

    function test: TTestClass; stdcall; external 'testdllP.dll';
    implementation
    var
      t: TTestClass;
    {$R *.dfm}

    procedure TForm1.Button1Click(Sender: TObject);
    begin
      edit1.Text:= IntToStr(t.Plus(10, 20));
    end;

    procedure TForm1.FormCreate(Sender: TObject);
    begin
      t:= test;
    end;

    procedure TForm1.Button2Click(Sender: TObject);
    begin
      edit2.Text:= t.PlusStr(edit2.text);
    end;