Hello,
I am trying to call a function in a DLL whose signature is as below
datablock* foo(datablock db);
where datablock is :
typedef struct
{
unsigned char data[10240];
unsigned int no_of_bytes;
unsigned long start;
} datablock;
this is actaually a wrapper for a function which...