From: <arj...@us...> - 2008-08-25 04:30:34
|
Revision: 8710 http://plplot.svn.sourceforge.net/plplot/?rev=8710&view=rev Author: arjenmarkus Date: 2008-08-25 04:30:45 +0000 (Mon, 25 Aug 2008) Log Message: ----------- Fix for problem with long long integer types in MS Visual C/C++ 6.0 (a proper test a la HAVE_STDINT would be better) Modified Paths: -------------- trunk/include/plplot.h Modified: trunk/include/plplot.h =================================================================== --- trunk/include/plplot.h 2008-08-25 04:29:24 UTC (rev 8709) +++ trunk/include/plplot.h 2008-08-25 04:30:45 UTC (rev 8710) @@ -156,7 +156,12 @@ /* A reasonable back-up in case stdint.h does not exist on the platform. */ typedef unsigned int PLUINT; typedef int PLINT; +typedef __int64 PLINT64; +/* +typedef unsigned int PLUINT; +typedef int PLINT; typedef long long PLINT64; +*/ #endif /* For identifying unicode characters */ @@ -1089,7 +1094,7 @@ PLDLLIMPEXP void c_plmtex3(const char *side, PLFLT disp, PLFLT pos, PLFLT just, const char *text); - + /* Plots a 3-d representation of the function z[x][y]. */ PLDLLIMPEXP void @@ -1178,7 +1183,7 @@ /* Prints out "text" at world cooordinate (x,y,z). */ PLDLLIMPEXP void -c_plptex3(PLFLT wx, PLFLT wy, PLFLT wz, PLFLT dx, PLFLT dy, PLFLT dz, +c_plptex3(PLFLT wx, PLFLT wy, PLFLT wz, PLFLT dx, PLFLT dy, PLFLT dz, PLFLT sx, PLFLT sy, PLFLT sz, PLFLT just, const char *text); /* Random number generator based on Mersenne Twister. @@ -1545,7 +1550,7 @@ PLDLLIMPEXP void c_pltext(void); -/* Set the format for date / time labels */ +/* Set the format for date / time labels */ PLDLLIMPEXP void c_pltimefmt(const char *fmt); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |