一VC的程序如下
#include <windows.h> //個人比較懶 ^^||,也試過DLL專案的 #include "stdafx.h"
extern "C" _declspec(dllexport) BSTR ReadString(LPCSTR lpString)
{
char str[]="Hello ,World!";
if(strcmp(lpString,str)==0)
return SysAllocString((BSTR)str);
else
return SysAllocString((BSTR)lpString);
}
編譯下 error
想請問 該 #includ 哪一個標頭檔(xx.h)
(沒什麼提問,乾脆自己問
)