|
Dll wizard로 dll을 만들때, C를 선택해서 다음과 같이 함수를 작성했습니다.
extern "C" __export __stdcall int aaa (char *hostname......)
{
.......
return (0);
}
그런데 extern "C" __export __stdcall int aaa (char *hostname......)
이 부분에서 E2040 : Declaration terminated incorrectly라는 에러가 계속 납니다..
뭐가 잘 못 됐는지 이것저것 해봤는데 도저히 모르겠네요.
고수님들의 고견 부탁드립니다... ^^
|