From: <ai...@us...> - 2008-10-10 21:47:32
|
Revision: 8879 http://plplot.svn.sourceforge.net/plplot/?rev=8879&view=rev Author: airwin Date: 2008-10-10 21:47:29 +0000 (Fri, 10 Oct 2008) Log Message: ----------- Make plRemakePlot, ucs4_to_utf8, and plP_fci2hex externally visible for libplplot so that some of the device drivers can use them. Modified Paths: -------------- trunk/include/drivers.h trunk/include/plplotP.h Modified: trunk/include/drivers.h =================================================================== --- trunk/include/drivers.h 2008-10-10 20:35:15 UTC (rev 8878) +++ trunk/include/drivers.h 2008-10-10 21:47:29 UTC (rev 8879) @@ -110,7 +110,7 @@ void * plbuf_save (PLStream *, void *); void * plbuf_switch (PLStream *, void *); -void plRemakePlot (PLStream *); +PLDLLIMPEXP void plRemakePlot (PLStream *); #ifdef __cplusplus } Modified: trunk/include/plplotP.h =================================================================== --- trunk/include/plplotP.h 2008-10-10 20:35:15 UTC (rev 8878) +++ trunk/include/plplotP.h 2008-10-10 21:47:29 UTC (rev 8879) @@ -461,7 +461,7 @@ plP_hex2fci(unsigned char hexdigit, unsigned char hexpower, PLUNICODE *pfci); /* Retrieves hex digit value from FCI (font characterization integer). */ -void +PLDLLIMPEXP void plP_fci2hex(PLUNICODE fci, unsigned char *phexdigit, unsigned char hexpower); /* Pattern fills in software the polygon bounded by the input points. */ @@ -502,7 +502,7 @@ /* A replacement for strdup(), which isn't portable. */ -char PLDLLIMPEXP * +PLDLLIMPEXP char * plstrdup(const char *src); /* Bin up cmap 1 space and assign colors to make inverse mapping easy. */ @@ -978,7 +978,7 @@ void grimage(short *x, short *y, unsigned short *z, PLINT nx, PLINT ny); -int PLDLLIMPEXP +PLDLLIMPEXP int plInBuildTree(); void @@ -997,7 +997,7 @@ * and vector transformations. * This is not currently intended to be called direct by the user */ -void PLDLLIMPEXP +PLDLLIMPEXP void plfvect(PLFLT (*plf2eval) (PLINT, PLINT, PLPointer), PLPointer f2evalv_data, PLPointer f2evalc_data, PLINT nx, PLINT ny, PLFLT scale, @@ -1028,7 +1028,7 @@ plP_FreeDrvOpts(); /* Convert a ucs4 unichar to utf8 char string*/ -int +PLDLLIMPEXP int ucs4_to_utf8(PLUNICODE unichar, char *ptr); /* This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |