C#コードで関数を使用したいDLLがあります。そのDLLの関数は次のとおりです。
extern "C"
{
__declspec(dllimport)
const char* __stdcall ZAJsonRequestA(const char *szReq);
__declspec(dllimport)
const wchar_t* __stdcall ZAJsonRequestW(const wchar_t *szReq);
__declspec(dllimport)
const BSTR __stdcall ZAJsonRequestBSTR(BSTR sReq);
}
このdllは他の言語のように見えるので、誰かがC#プロジェクトでそれを使用する方法を教えてもらえますか?