Thanks a lot Ron and Mike!

Henry made a very large commit to the store that
should get us a bit closer to the beta a few days
ago.  I am currently working on getting it tested
in our environment, so things will take some time
before they're stable again.

We're trying to move the source tree closer to a
unicode build.  The STL wstring class seems to
make it easier to deal with those strings, it at
least makes memory management easier.

Most API functions have a 'Wide String' and an
ASCII string alternate implementations. The
Wide string version usually ends with a 'W'
whilst the ASCII version an 'A'.  Eg.
'CopyFileA(...)' takes ASCII args and
'CopyFileW(...)' takes wide char args. The
generic 'CopyFile(...)' is replace by the
correct version based on what unicode flags are
passed at build time.  We currently do not build
with Unicode, though that should change in the
future.  To call the Wide char version of the
function in an ASCII build, just use
'CopyFileW(...)' and not 'CopyFile(...)'.
std::wstring.c_str() class returns a wchar_t *
that you can then pass to 'CopyFileW(...)'.

Before the commit I would replace all the references
to LPTSTR with LPWSTR or std::wstring.  I can do
that so Ron doesn't have to bother, but if it was
done already that would be nice :)

The next bit would be the configuration gui
responsible for manipulating the MAPI profile. The
file otlkcon_gui.cpp/h has some information on an
older GUI we did.
http://cvs.sourceforge.net/viewcvs.py/otlkcon/otlkcon0/otlkcon_gui.cpp?view=markup

I am hoping to have the last few major commits
tested in a few days.  After that the gui code
should be ready to use.

Thanks again!

Best Regards,
Kervin



Mike Oh wrote:
Ron - Here's another link -
Could it be as simple as this?

http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vcmfc98/html/_mfc_cstring.3a3a.operator_lpctstr.asp


-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_idv37&alloc_id865&op=click
_______________________________________________
otlkcon-devel mailing list
otlkcon-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/otlkcon-devel




-------------------------------------------------------
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
_______________________________________________
otlkcon-devel mailing list
otlkcon-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/otlkcon-devel

Reply via email to