problema con DLL32 [solucionado]
Posted: Mon Apr 20, 2020 4:09 pm
Hola:
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:
Pero siempre me devuelve .f.
¿Hago algo mal?
Muchas gracias.
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.