Код на СИ
/// Файл main.h
/* To use this exported function of dll, include this header
* in your project.
*/
extern "C"
{
void __stdcall DLL_EXPORT SomeFunction(const LPCSTR sometext);
}
/// Файл main.c
// a sample exported function
void __stdcall DLL_EXPORT SomeFunction(const LPCSTR sometext)
{
MessageBoxA(0, sometext, "DLL Message", MB_OK | MB_ICONINFORMATION);
}
'Код в VBA модуле:
Declare Sub SomeFunction Lib "dllTestVBA.dll" _
Alias "SomeFunction@4" (ByVal msg As String)
' SomeFunction@4 - это смотреть в dllTestVBA.def
'
Sub tt()
SomeFunction "gfgfg"
End Sub
Комментариев нет:
Отправить комментарий