A
Alessandro Cavalieri
hi all,
I need to write a DLL using eVC4 (there is only one function in it) and call
it from C# but I receive the following message:
An unhandled exception of type 'System.MissingMethodException' occurred in
Socket.exe
the message seams to be clear but I'm sure that the exported function name
is correct and
the function is defined in C# as follow:
[DllImport("hmac_md5.dll", EntryPoint="hmac_md5")]
public static extern int hmac_md5(
ref Byte[] text, /* pointer to data stream */
int text_len, /* length of data stream */
ref Byte[] key, /* pointer to authentication key */
int key_len, /* length of authentication key */
ref Byte[] digest /* caller digest to be filled in */
);
note: I have a PXA250 processor (Toshiba e740) so I've copied the ARMV4I
version into the PPC application directory.
any idea about the error?
Thank in advance.
Alessandro
I need to write a DLL using eVC4 (there is only one function in it) and call
it from C# but I receive the following message:
An unhandled exception of type 'System.MissingMethodException' occurred in
Socket.exe
the message seams to be clear but I'm sure that the exported function name
is correct and
the function is defined in C# as follow:
[DllImport("hmac_md5.dll", EntryPoint="hmac_md5")]
public static extern int hmac_md5(
ref Byte[] text, /* pointer to data stream */
int text_len, /* length of data stream */
ref Byte[] key, /* pointer to authentication key */
int key_len, /* length of authentication key */
ref Byte[] digest /* caller digest to be filled in */
);
note: I have a PXA250 processor (Toshiba e740) so I've copied the ARMV4I
version into the PPC application directory.
any idea about the error?
Thank in advance.
Alessandro