Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
そのような署名を持つWin32 DLLにC++関数があります:
extern "C" const char* __declspec( dllexport ) GetResultName( int index ) {
const char*文字列の種類に注意してください。
const char*
Visual Basic 2008 アプリケーションでこの値を読み取る方法は?
属性を使用して関数をインポートし、次のDllImportように宣言できStringます。
DllImport
String
<DllImport("yourcppdll.dll", SetLastError:=True, CharSet:=CharSet.Ansi)> _ Public Function GetResultName(index As Integer) As String End Function