summaryrefslogtreecommitdiff
path: root/src/flam3.h
diff options
context:
space:
mode:
authorErik Reckase <e.reckase@gmail.com>2011-01-09 16:48:18 +0000
committerScott Draves <spot@draves.org>2015-02-15 12:20:14 -0500
commit3274d1b51b721e388e9e038d1945412c450ae224 (patch)
tree4226b2794448af7280a70b7d0002f069222ea398 /src/flam3.h
parent6cfbf0cbb191898182f10d409809ca26b2ed21da (diff)
downloadpucket-3274d1b51b721e388e9e038d1945412c450ae224.tar.gz
pucket-3274d1b51b721e388e9e038d1945412c450ae224.tar.bz2
pucket-3274d1b51b721e388e9e038d1945412c450ae224.zip
in some circumstances, temporary files are not created as they are supposed to (windows tries to create it in a place protected by Admin.) We need to be able to try to create them in the location pointed to by the TEMP env var. Note that this is not threadsafe, but it's unlikely to cause a problem at the moment.
git-svn-id: https://flam3.googlecode.com/svn/trunk@154 77852712-ef1d-11de-8684-7d64432d61a3
Diffstat (limited to 'src/flam3.h')
-rw-r--r--src/flam3.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/flam3.h b/src/flam3.h
index e94ec89..44e6d29 100644
--- a/src/flam3.h
+++ b/src/flam3.h
@@ -559,7 +559,7 @@ void apply_motion_parameters(flam3_xform *xf, flam3_xform *addto, double blend);
EXPORT void flam3_interpolate(flam3_genome *genomes, int ngenomes, double time, double stagger, flam3_genome *result);
/* print genome to given file with extra_attributes if not NULL */
-void flam3_print(FILE *f, flam3_genome *g, char *extra_attributes, int print_edits);
+EXPORT void flam3_print(FILE *f, flam3_genome *g, char *extra_attributes, int print_edits);
void flam3_print_xform(FILE *f, flam3_xform *x, int final_flag, int numstd, double *chaos_row, int motion_flag);
EXPORT char *flam3_print_to_string(flam3_genome *cp);