I have a bog-standard Visual Studio Express Visual C++ environment, installed on a bog-standard Windows 7 box. I’d like to simply compile “#include “WinCrypt.h” (from the Windows SDK) without error. Can someone post the prereq set of includes (and perhaps VS settings) to accomplish this?
I have a bog-standard Visual Studio Express Visual C++ environment, installed on a bog-standard
Share
Don’t you only have to
#include <Windows.h>then#include <Wincrypt.h>?Edit: yes that is the case. I just tested it and the only requirements to
#include WincryptareWindows.hand an entry point (main function) to your program.