I'm having problem calling a dll that I created having an entry point like this:
void _stdcall Entry_Point_Function(unsigned char *input, int count, unsigned char *Output)
{
Function1(Input, count);
Function2(Output);
}
Some of the internal functions in the dll are declare as static.
In the...