CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 15 of 16

Threaded View

  1. #3
    Join Date
    Jun 2015
    Posts
    13

    Re: how to pass char* to wchar_t*

    Hi,

    When I debug, if the text is "aña" and I put descr[0][1] in the debugger, it says that is a char type and the value is -61 'Ã' ... is that what you are asking for?
    However, descr[0] gives me that is a char* type and then 0x8197a1c "aña"

    And for word "Euro" for example I get:
    Code:
    E = 69 'E'
    u = 117 'u'
    r = 114 'r'
    o = 111 'o'
    EDIT: the code -61 'Ã' is in that example. When I get the sentence from the server (another one but iwth a 'ñ' inside), then its -63 'Ã'
    Last edited by roseicollis; September 22nd, 2015 at 02:57 AM.

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured