CString to char const *

I have a function with prototype
Op(char const *);
Arg 1 is of CString type.
What is the proper conversion method?
Cheers
[153 byte] By [Saeed] at [2007-11-20 11:48:17]
# 1 Re: CString to char const *
You don't have to do anything just supply the CString variable. CString has an implicit conversion function to LPCTSTR which will be invoked.
miteshpandey at 2007-11-11 4:02:50 >