Hi, thanks for your work on gnuplot for wince and making it public. Thanks to @skawamoto0 too.
I also need to port gnuplot to wince. I run a x86 single board computer hardware and thus have a normal desktop so it is a little different to you on a mobile device. Im using vs2005 with a custom sdk.
I have a few questions for you
- The base version that was chosen was 4.4.3. Do you know why this version was picked? Do you know of any reason why version 6 would not work on wince?
- I ran into some problems with unicode. Wince is unicode only but gnuplot code is not. There are a number of wrapper functions that were done to get around this. However wgnuplot.vcproj manually defines _UNICODE;UNICODE and thus builds a unicode exe.
With all the char in the source rather than wchar it does not work.
I found that I had to remove _UNICODE;UNICODE and set the build to a character set of 'Not set' to get it to run right.
Did you have any issues here?
I am going to think of how I can build with full unicode without changing the source too much.
To get the build working and running I had to do some changes.
I will post these later.
Hi, thanks for your work on gnuplot for wince and making it public. Thanks to @skawamoto0 too.
I also need to port gnuplot to wince. I run a x86 single board computer hardware and thus have a normal desktop so it is a little different to you on a mobile device. Im using vs2005 with a custom sdk.
I have a few questions for you
With all the char in the source rather than wchar it does not work.
I found that I had to remove _UNICODE;UNICODE and set the build to a character set of 'Not set' to get it to run right.
Did you have any issues here?
I am going to think of how I can build with full unicode without changing the source too much.
To get the build working and running I had to do some changes.
I will post these later.