Reputation: 47729
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?
Upvotes: 3
Views: 9212
Reputation: 7590
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 Wincrypt
are Windows.h
and an entry point (main function) to your program.
Upvotes: 7