diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-07-14 19:08:25 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2002-07-14 19:08:25 +0000 |
| commit | aa837b09da4e547bb8fea10a65cdac0fa83243e7 (patch) | |
| tree | 2b6663a2b894a9a70781fc68c27e76bcbd935f3e /src/flstring.h | |
| parent | 1d56e20d199d75470fc9562795fc6f72b183c948 (diff) | |
More FL_EXPORT stuff for WIN32.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2529 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/flstring.h')
| -rw-r--r-- | src/flstring.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/flstring.h b/src/flstring.h index c872a341d..df1615c3d 100644 --- a/src/flstring.h +++ b/src/flstring.h @@ -1,5 +1,5 @@ /* - * "$Id: flstring.h,v 1.1.2.7 2002/05/19 17:44:56 easysw Exp $" + * "$Id: flstring.h,v 1.1.2.8 2002/07/14 19:08:25 easysw Exp $" * * Common string header file for the Fast Light Tool Kit (FLTK). * @@ -26,6 +26,7 @@ #ifndef flstring_h # define flstring_h +# include <FL/Fl_Export.H> # include <config.h> # include <stdarg.h> # include <string.h> @@ -57,12 +58,12 @@ extern "C" { # endif /* __cplusplus */ # if !HAVE_SNPRINTF -extern int fl_snprintf(char *, size_t, const char *, ...); +FL_EXPORT extern int fl_snprintf(char *, size_t, const char *, ...); # define snprintf fl_snprintf # endif /* !HAVE_SNPRINTF */ # if !HAVE_VSNPRINTF -extern int fl_vsnprintf(char *, size_t, const char *, va_list ap); +FL_EXPORT extern int fl_vsnprintf(char *, size_t, const char *, va_list ap); # define vsnprintf fl_vsnprintf # endif /* !HAVE_VSNPRINTF */ @@ -72,12 +73,12 @@ extern int fl_vsnprintf(char *, size_t, const char *, va_list ap); */ # if !HAVE_STRLCAT -extern size_t fl_strlcat(char *, const char *, size_t); +FL_EXPORT extern size_t fl_strlcat(char *, const char *, size_t); # define strlcat fl_strlcat # endif /* !HAVE_STRLCAT */ # if !HAVE_STRLCPY -extern size_t fl_strlcpy(char *, const char *, size_t); +FL_EXPORT extern size_t fl_strlcpy(char *, const char *, size_t); # define strlcpy fl_strlcpy # endif /* !HAVE_STRLCPY */ @@ -87,5 +88,5 @@ extern size_t fl_strlcpy(char *, const char *, size_t); #endif /* !flstring_h */ /* - * End of "$Id: flstring.h,v 1.1.2.7 2002/05/19 17:44:56 easysw Exp $". + * End of "$Id: flstring.h,v 1.1.2.8 2002/07/14 19:08:25 easysw Exp $". */ |
