Tagged Questions

2
votes
7answers
162 views

Parsing variable length descriptors from a byte stream and acting on their type

I'm reading from a byte stream that contains a series of variable length descriptors which I'm representing as various structs/classes in my code. Each descriptor has a fixed lengt …
0
votes
4answers
139 views

const char* to TDesC16

Hi I have a const char* that specifies the file that I want to delete. I want to use RF::Delete to delete a file which takes a TDesC16 as input argument. Does anyone know how to …
1
vote
1answer
70 views

Symbian character printing

I am attempting to construct a very simple proof of concept that I can write a web service and actually call the service from a symbian environment. The service is a simple Hello s …
0
votes
2answers
105 views

Python Data Descriptor With Pass-through __set__ command

I'm having a bit of an issue solving a problem I'm looking at. I have a specialized set of functions which are going to be in use across a program, which are basically dynamic cal …
0
votes
2answers
70 views

Problems with Symbian descriptor assignment

Hi, Once again I am struggeling with Symbians Descriptors... char fileName[128] = "somethingsomething"; Next I have then en TEntry object which has a member iName. To this iNam …
1
vote
1answer
138 views

unsigned char* to const TDesC8 in Symbian C++

Hi I wanna send an unsigned char * over the Socket whereas the RSockt.Send has the following signature: IMPORT_C void Send(const TDesC8 &aDesc, TUint someFlags, TRequestStatu …
2
votes
1answer
173 views

TBuf to TInt Symbian

Hi I simply wanna convert a TBuf to TInt in Symbian. I tried to do it the following way: TBuf<2> buf; buf.Copy( _L("10")); TInt valInt; TLex8 lex(buf); lex.Val(valInt); …
2
votes
3answers
125 views

Symbian C++: TBuf Question

Hi I have a TBuf variable in my code that looks as follows: TBuf<100> test; test.Copy( _L("02somestringofrandomlength")); What I would like to do now, is to ignore the nu …