Hi everyone,
I have a library in C++ ( All source and header files) which was targeted for Linux. Although, the authors say that with some minor changes, it can be compiled on Windows too.
Also, when I checked the .CPP files, some do the following code
#ifdef WIN32
#include <windows.h>
#include <wincrypt.h>
#endif
which means.. tht they hav considered windows as an option..
But, when I compile it on VC++, it throws me plenty of error..
what can possibly be the problem.. Any idea?
Regards,
Abhijit