wxChar* to char* Topic is solved

If you are using the main C++ distribution of wxWidgets, Feel free to ask any question related to wxWidgets development here. This means questions regarding to C++ and wxWidgets, not compile problems.
Post Reply
lincoder
Earned a small fee
Earned a small fee
Posts: 11
Joined: Tue Oct 17, 2006 3:09 pm

wxChar* to char*

Post by lincoder »

Hello, I've scoured google and these forums, but haven't found anything concrete. I was wondering - how might I go about converting a wxChar* into char*?

Thanks,
Lincoder
amit06
Experienced Solver
Experienced Solver
Posts: 77
Joined: Mon Apr 10, 2006 5:08 am
Location: Kolkata, India
Contact:

Post by amit06 »

how might I go about converting a wxChar* into char*?
You need not have to go far becoz
wxChar* is char* in ANSI build, wchar_t* in Unicode build

now first tell which build is u r using??

Amit
(success is the failure to fail...........)
elmo
Experienced Solver
Experienced Solver
Posts: 56
Joined: Mon Dec 26, 2005 9:23 pm
Location: Poland, Warsaw

Post by elmo »

Post Reply