Mercurial > hg > octave-nkf
diff libinterp/interpfcn/help.h @ 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 | bf0857c789f4 |
children |
line wrap: on
line diff
--- a/libinterp/interpfcn/help.h +++ b/libinterp/interpfcn/help.h @@ -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