I downloaded "Wave Audio Package" VCL Component from here http://www.delphiarea.com/downloads/, the component package is for Delphi and I need to use it from CBuilder side (I'm using RAD Studio XE), after a setting tweaking the dproj (in C++ output file generation I set to "Generate all C++ Builder files (including package libs)") I managed to get VCL components working in CBuilder side.
But there're still problems, I can't use it's 'global' function (under namespace Waveutils::) such as Waveutils::SetPCMAudioFormatS, Waveutils::GetWaveAudioFormat, etc. The compiling process was fine, but there were link problem said that the linker cannot find reference for that function, even after I added library 'WA2010.lib' (which is generated when I built the component from delphi side). I have dumped the WA2010.lib using TDUMP, it seems that it contains code for the functions.
Are there steps that I'm missing ? Thanks in advance for any help.