bananas » 29.04.2006 (Сб) 21:58
// This is an example of an exported function.
extern "C" __declspec(dllexport) char fnBIG_DLL(char* array[256],int n)
{
char x;
x=*array[n];
return x;
}
Private Declare Function fnBIG_DLL Lib "BIG_DLL.dll" (x() As Byte, ByVal n As Long) As Byte
так не выходит, все рушиться при попытке x=*array[n];