J
javiernews
Hi,
Is is possible to call the following function with a relative o partial path
??
Look here:
"C:\TempAes\Aes.dll"
THIS IT WORKS GOOD:
Private Declare Function AesEncKey Lib "C:\TempAes\Aes.dll" Alias
"_aes_enc_key@12" (K As KeyBlk, ByVal N As Long, C As AESctx) As Integer
I tryed with something like this but I had got an ERROR
THIS I GOT ERROR:
Private Declare Function AesEncKey Lib funPath Alias "_aes_enc_key@12" (K
As KeyBlk, ByVal N As Long, C As AESctx) As Integer "<<< Error
Function funPath() As String
rem relative path
funPath = Application.CurrentProject.Path & "\" & "Aes.dll"
End Function
thank you !
Javier
Is is possible to call the following function with a relative o partial path
??
Look here:
"C:\TempAes\Aes.dll"
THIS IT WORKS GOOD:
Private Declare Function AesEncKey Lib "C:\TempAes\Aes.dll" Alias
"_aes_enc_key@12" (K As KeyBlk, ByVal N As Long, C As AESctx) As Integer
I tryed with something like this but I had got an ERROR
THIS I GOT ERROR:
Private Declare Function AesEncKey Lib funPath Alias "_aes_enc_key@12" (K
As KeyBlk, ByVal N As Long, C As AESctx) As Integer "<<< Error
Function funPath() As String
rem relative path
funPath = Application.CurrentProject.Path & "\" & "Aes.dll"
End Function
thank you !
Javier