in my programa am using the below code
in .h
RPhCltServer iPhoneClientServer;
RLibrary iLibrary;
CPhCltExtFactory* iPhCltExtFactory;
CPhCltCommandHandler* iPhCommandHandler;
in .cpp
User::LeaveIfError( iPhoneClientServer.Connect() );
User::LeaveIfError( iLibrary.Load(KPhoneCltExDllName) );
TInt res = iLibrary.Lookup(1)();
iPhCltExtFactory = reinterpret_cast<CPhCltExtFactory*>( res );
iPhCommandHandler = iPhCltExtFactory->CPhCltCommandHandlerLD();
User::LeaveIfError( iPhCommandHandler->Open(iPhoneClientServer));
and i have inluded the below headers
#include <CPhCltDialer.h>
#include <BAUTILS.H>
#include <phclttypes.h>
#include <etel3rdparty.h>
#include <PhCltExt.h>
#include <RPhCltServer.h>
Which i got as a pugin from
S60_3rd_SDK_MR_API_Plug-In_Pack_v5_43
and am using S60_3rd_FP1 SDK
while compileing am facing the below errors
Undefined symbol: 'int RPhCltServer::Connect(int) (?Connect@RPhCltServer@@QAEHH@Z)'[]
Undefined symbol: 'RPhCltServer::RPhCltServer(void) (??0RPhCltServer@@QAE@XZ)'[]
i know its because of either the missing library phoneclient.lib
or missing.cpp file in the .mmp file.
i have added .cpp in my .mpp
and now i need the phoneclient.lib which is not provided as an plugin for the winscw
can anyone plz help me


The Libs for the same are also not there. I am also waiting for someone from Nokia to help in this issue.



