Hello,
Has anyone tried to do this on a series 80 device? Using RSystemAgent I was able to query network status and charger status successfully. But no luck with battery status.
I tried other...
Type: Posts; User: toughworker; Keyword(s):
Hello,
Has anyone tried to do this on a series 80 device? Using RSystemAgent I was able to query network status and charger status successfully. But no luck with battery status.
I tried other...
Sorry I was using "TInt res = SpawnPosixServerThread();" to start the CPosixServer, not "CActiveScheduler::Install(GLtestexeScheduler)". I copied the wrong code here.
Hello,
My application needs to access file/file handles in a multi-thread manner. Basically there is a global file handle that the main thread uses which to open a file, then child threads use...
When activating the bluetooth facility on your device, you will be asked to give the device a name. Is there a way I can retrieve device name programmatically?
Thanks.
Hello,
In our application we wanted to do memory management by ourselves. Basically we will allocate a chunk of memory that is big enough for our use and overwrite operator new and delete, so...
Hello,
According to the document, it is possible to allocate global memory as following to be shared between different threads:
RChunk chunk;...
Hello,
I am trying to create a global RChunk to and share it between different process. However, although there is API to create a global chunk:
RChunk chunk;
TInt err =...
Thanks for your reply. I will give it a try!
We have an exe that implements the most basic functionality of the UI framework (using active objects to connect to window server, set up window group/drawing window, create screen device/graphic...
I did try using UID, which doesn't work either ... yes I see the discussing of hiding app in background, but that's hiding an app not exe. My feeling is the exe is invisible to the application...
In our exe, we implemented a window class that talks to the windows server directly. Although we are not using anything from the UI framework, we can communicate with the windows server correctly...
We want to use class TApaTask since it has API “BringToForeGround” and “SendToForeGround”. However after starting an exe using EikDll::StartExe() (notice: RApaLsSession only has API “StartApp”, which...