What is the help files folder in S60 3rd?

Login to reply to this topic.
Thu, 2006-01-26 07:42
Joined: 2005-02-22
Forum posts: 12
Hello!

In previous versions of S60 SDK this path was "\resource\help\" and if you
wanted your application display a help topic you had to copy your hlp file
into that folder, than launch help application with something like:

Code:
TCoeHelpContext help = TCoeHelpContext();
iAppContainer->GetHelpContext(help);

CArrayFixFlat<TCoeHelpContext>* aContextList = new (ELeave)
CArrayFixFlat<TCoeHelpContext>(10);

aContextList->AppendL(help);
RWsSession ws = iEikonEnv->WsSession();
HlpLauncher::LaunchHelpApplicationL(ws, aContextList);

Now, in S60 3rd edition this code has as result "No help topics found", and
the attempts to copy application's help file into "\resource\help" fail.

This code works on the emulator but it doesn't work on device (on device i
get KErrNoMemory error code when I try to create that folder or to copy the
help file in it).

Who can give me a clue?

  • Login to reply to this topic.