From 944c32346b3c6bb87fccb22f159bdd9297bae50d Mon Sep 17 00:00:00 2001 From: John Emmas Date: Sat, 8 Mar 2014 11:29:52 +0000 Subject: [PATCH] Add a couple of visibility specifiers that were missing --- libs/pbd/pbd/search_path.h | 2 +- libs/pbd/pbd/windows_special_dirs.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/pbd/pbd/search_path.h b/libs/pbd/pbd/search_path.h index 2ccd9bf0ee..e4c6c07847 100644 --- a/libs/pbd/pbd/search_path.h +++ b/libs/pbd/pbd/search_path.h @@ -110,7 +110,7 @@ protected: LIBPBD_TEMPLATE_MEMBER_API void add_directories (const std::vector& paths); }; -void export_search_path (const std::string& base_dir, const char* varname, const char* dir); +LIBPBD_API void export_search_path (const std::string& base_dir, const char* varname, const char* dir); } // namespace PBD diff --git a/libs/pbd/pbd/windows_special_dirs.h b/libs/pbd/pbd/windows_special_dirs.h index b77b8c7945..b0c6f65bc7 100644 --- a/libs/pbd/pbd/windows_special_dirs.h +++ b/libs/pbd/pbd/windows_special_dirs.h @@ -21,7 +21,7 @@ #define __libpbd_windows_special_dirs_h__ namespace PBD { - char * get_win_special_folder (int csidl); + LIBPBD_API char * get_win_special_folder (int csidl); } #endif /* __libpbd_windows_special_dirs_h__ */