CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Page 2 of 2 FirstFirst 12
Results 16 to 18 of 18
  1. #16
    Join Date
    Feb 2005
    Posts
    64

    Re: Regarding Converting of an application to Unicode.

    Hi,
    Pl. clarify this doubt..
    If I am converting an application, than is it necessary to replace
    int with DWORD,
    char[] to char*, and other similiar one.

    Regs

  2. #17
    Join Date
    May 2002
    Posts
    1,435

    Re: Regarding Converting of an application to Unicode.

    You need not worry about int, bool, BOOL and DWORD. Only character types:

    char[] to TCHAR[]

    and

    char* to TCHAR*

  3. #18
    Join Date
    Feb 2005
    Posts
    64

    Re: Regarding Converting of an application to Unicode.

    Thanks for clarification.................

    Regs

Page 2 of 2 FirstFirst 12

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