[MSEide-MSEgui-talk] utf8string: which type is it mapped to ?

2011-12-12 Thread IvankoB
Looks most appropriate amongst others for crypting both single- multibyte data. -- Learn Windows Azure Live! Tuesday, Dec 13, 2011 Microsoft is holding a special Learn Windows Azure training event for developers. It

Re: [MSEide-MSEgui-talk] utf8string: which type is it mapped to ?

2011-12-12 Thread Martin Schreiber
On 12/12/2011 04:40 PM, IvankoB wrote: Looks most appropriate amongst others for crypting both single- multibyte data. I don't understand. Martin -- Learn Windows Azure Live! Tuesday, Dec 13, 2011 Microsoft is

Re: [MSEide-MSEgui-talk] utf8string: which type is it mapped to ?

2011-12-12 Thread Martin Schreiber
On 12/13/2011 06:10 AM, IvankoB wrote: Looks most appropriate amongst others for crypting both single- multibyte data. I don't understand. PChar or AnsiString ? In which context? Martin -- Systems Optimization

Re: [MSEide-MSEgui-talk] utf8string: which type is it mapped to ?

2011-12-12 Thread IvankoB
PChar or AnsiString ? In which context? Per char access plus string length. -- Systems Optimization Self Assessment Improve efficiency and utilization of IT resources. Drive out cost and improve service delivery.

Re: [MSEide-MSEgui-talk] utf8string: which type is it mapped to ?

2011-12-12 Thread IvankoB
Per char access plus string length. I still don't get the question. Please explain. How to pass it to C function expecting unsigned char* ? PChar(utf8_string) len=strlen(utf8_string) or @utf8_string[1] len=length(utf8_string)? BTW, the utf8_string is produced by stringtoutf8(msestring)

Re: [MSEide-MSEgui-talk] utf8string: which type is it mapped to ?

2011-12-12 Thread Martin Schreiber
On 12/13/2011 08:31 AM, IvankoB wrote: Per char access plus string length. I still don't get the question. Please explain. How to pass it to C function expecting unsigned char* ? PChar(utf8_string) len=strlen(utf8_string) This returns a pointer to #0 in case utf8_string = ''. or