|
전재득님.. 잘 몰라서 코딩을 따라서 입력 했습니다.
extern "C" __declspec(dllexport) void __stdcall testfunc( TObject *pParent )
{
Form2=new TForm2(pParent );
Form2->Show();
}
DLL 을 만들려니 오류가 납니다..
오류 내용이..
[C++Error]Unit1.cpp(37):E2285 Could not find a match for 'TForm2(TObject*)'
|