Re: convert rtl::OUString to char *

2013-09-24 Thread jg
WideCharToMultiByte() indicates that you are working on Windows. At first you need to convert to UTF16 (from UTF8), and then from UTF16 to the desired code page. Have a look at http://code.msdn.microsoft.com/C-UTF-8-Conversion-Helpers-22c0a664 . jg

Re: convert rtl::OUString to char *

2013-09-24 Thread jg
WideCharToMultiByte() indicates that you are working on Windows. At first you need to convert to UTF16 (from UTF8), and then from UTF16 to the desired code page. Have a look at http://code.msdn.microsoft.com/C-UTF-8-Conversion-Helpers-22c0a664 . jg

Re: UNO API

2013-04-02 Thread jg
to). The old message http://markmail.org/message/gzzv3we42b36aavn?q=list:org%2Eapache%2Eincubator%2Eooo-api+from:%22jg%22page=1 has some more details on what to look for. jg - To unsubscribe, e-mail: api-unsubscr

Re: Regarding MSVCR80.dll

2013-01-25 Thread jg
need other tools as well (like the manifest tool to bind the executable code to the proper runtime libs) and you probably end up doing a lot of OS dependent dispatching inside the makefile. Consider generating your build environment with cmake (www.cmake.org). jg

Re: Need help in getting the design right with Openoffice.org

2012-12-20 Thread jg
potentially need to spend more time working out the details when you are on your own. I am sure that there are enough experts out there, who are able to offer professional help. jg

Re: Help needed for building SDK samples in Visual Studio 2010

2012-12-14 Thread jg
http://wiki.openoffice.org/wiki/Documentation/DevGuide/OpenOffice.org_Developers_Guide jg