# HG changeset patch # User Michael Goffioul # Date 1352080083 0 # Node ID bb7cbef712f138fe28a4720cd603cb86e023e4ab # Parent 9046ee786fe10a277bbba92449afa67b906a4d1d 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. diff --git a/libinterp/interpfcn/help.h b/libinterp/interpfcn/help.h --- 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