changeset 15598:bb7cbef712f1

Add missing OCTINTTERP_API decorator. * libinterp/interpfcn/help.h (Vdoc_cache_file, Vtexi_macros_file, Vinfo_file, Vinfo_program, do_which): Add OCTINTERP_API decorator.
author Michael Goffioul <michael.goffioul@gmail.com>
date Mon, 05 Nov 2012 01:48:03 +0000
parents 9046ee786fe1
children 1d40c0514053
files libinterp/interpfcn/help.h
diffstat 1 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/interpfcn/help.h	Mon Nov 05 01:47:56 2012 +0000
+++ b/libinterp/interpfcn/help.h	Mon Nov 05 01:48:03 2012 +0000
@@ -36,21 +36,21 @@
 
 // Name of the doc cache file specified on the command line.
 // (--doc-cache-file file)
-extern std::string Vdoc_cache_file;
+extern OCTINTERP_API std::string Vdoc_cache_file;
 
 // Name of the file containing local Texinfo macros that are prepended
 // to doc strings before processing.
 // (--texi-macros-file)
-extern std::string Vtexi_macros_file;
+extern OCTINTERP_API std::string Vtexi_macros_file;
 
 // Name of the info file specified on command line.
 // (--info-file file)
-extern std::string Vinfo_file;
+extern OCTINTERP_API std::string Vinfo_file;
 
 // Name of the info reader we'd like to use.
 // (--info-program program)
-extern std::string Vinfo_program;
+extern OCTINTERP_API std::string Vinfo_program;
 
-extern std::string do_which (const std::string& name);
+extern OCTINTERP_API std::string do_which (const std::string& name);
 
 #endif