Necesito llamar a una función de una .dll externa que tiene que devolver .t. o .f.:
bool WLIsProtected(void);
en [Visual Basic]
<DllImport("WinlicenseSDK.dll", CallingConvention:=CallingConvention.StdCall)>
Public Shared Function WLIsProtected()as Boolean
End Sub
Mi código es:
Code: Select all
DLL32 FUNCTION IsProtected() AS BOOL PASCAL FROM "WLIsProtected" LIB "WinlicenseSDK.dll"
¿Hago algo mal?
Muchas gracias.