How to call 3rd Party API

I have an application developed on symbian c++. i want to call a 3rd party API for which i have included all the DLL and .h files provided by 3rd party vendor in coresponding directory .UDEB and Include .of symbian.

How can i call that 3rd party API ,please suggest me .I have the Pseudo
code for that ,i am confused in which directory/file of my project i have to include them(writethe code).

please suggest

Regard's
Dillip

Comments

Includes to epoc32\include, dlls to..

Hi

.h files
It doesn't really matter where you place those, the compiler will look for those in the SYSTEMINCLUDE and USSERINCLUDE directories specified in you *.mmp file.
However, there is a default SYSTEMINCLUDE place - \epoc32\include or one of its subdirectories

.dll, .lib files
When building for WINSCW UDEB, put those to \epoc32\release\winscw\udeb
When building for ARMV5 UREL, to \epoc32\release\armv5\urel

Data files
If there are some data files (e.g. sounds), that you DLL needs, put it to the subdirectories of \epoc32\WINSCW\C for WINSCW and to \epoc32\data\C for hardware builds