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 Expand view
- DLL32 FUNCTION IsProtected() AS BOOL PASCAL FROM "WLIsProtected" LIB "WinlicenseSDK.dll"
Pero siempre me devuelve .f.
¿Hago algo mal?
Muchas gracias.