I'm trying to get that DLL to work more than month and I don't know what is the problem. I cannot even compile my latest experiments.
The problem is:
Code:
326 unsigned char __stdcall *enctypex_decoder(unsigned char *key, unsigned char *validate, unsigned char *data, int *datalen, enctypex_data_t *enctypex_data) {
...
Code:
364 unsigned char __stdcall *enctypex_msname (unsigned char *gamename, unsigned char *retname) {
1>.\eXd.c(326) : error C2165: 'left-side modifier' : cannot modify pointers to data
1>.\eXd.c(364) : error C2165: 'left-side modifier' : cannot modify pointers to data
and I dunno how to get it to work properly because I'm not programming in C. I have one book here, but there isn't one word about creation of dynamic libraries, only static ones.
I've even tried many kinds of brackets, but with no success.
Can you please help me with this?