Unresolved external in newest version of Flexcel

I just updated to the most recent Flexcel from version 3.  I am getting the following unresolved externals.  What am I missing from the path (RAD Studio XE2, C++ profile):

CryptStringToBinaryW

CryptMsgClose

CryptMsgUpdate

CryptMsgGetParam


Thank you for your assistance.

Marvin Weingarden

Hi,

This happens in C++ builder when you compile without packages. 
To fix it, just add:
#pragma link "AdvApi32.lib"
#pragma link "Crypt32.lib"

somewhere in your project, and you should be able to build without packages. Note that if you decide to build with packages, those lines won't be needed.

Regards,
   Adrian