|
From: <ai...@us...> - 2010-09-22 19:23:38
|
Revision: 11201
http://plplot.svn.sourceforge.net/plplot/?rev=11201&view=rev
Author: airwin
Date: 2010-09-22 19:23:32 +0000 (Wed, 22 Sep 2010)
Log Message:
-----------
Actually declare c_plsmema. Without this declaration the build will
fail if your platform (e.g., Linux gcc with -fvisibility=hidden or
Windows) attempts to hide library symbols by default.
Tweak documentation of plsmem to be consistent with the plsmema
documentation.
Modified Paths:
--------------
trunk/include/plplot.h
Modified: trunk/include/plplot.h
===================================================================
--- trunk/include/plplot.h 2010-09-22 19:16:06 UTC (rev 11200)
+++ trunk/include/plplot.h 2010-09-22 19:23:32 UTC (rev 11201)
@@ -1648,11 +1648,16 @@
PLDLLIMPEXP void
c_plsmaj( PLFLT def, PLFLT scale );
-/* Set the memory area to be plotted (with the 'mem' driver) */
+/* Set the RGB memory area to be plotted (with the 'mem' or 'memcairo' drivers) */
PLDLLIMPEXP void
c_plsmem( PLINT maxx, PLINT maxy, void *plotmem );
+/* Set the RGBA memory area to be plotted (with the 'memcairo' driver) */
+
+PLDLLIMPEXP void
+c_plsmema( PLINT maxx, PLINT maxy, void *plotmem );
+
/* Set up lengths of minor tick marks. */
PLDLLIMPEXP void
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|