summaryrefslogtreecommitdiffstats
path: root/base/file_version_info.h
diff options
context:
space:
mode:
Diffstat (limited to 'base/file_version_info.h')
-rw-r--r--base/file_version_info.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/base/file_version_info.h b/base/file_version_info.h
index ab9ebe1..b41dc63 100644
--- a/base/file_version_info.h
+++ b/base/file_version_info.h
@@ -16,7 +16,7 @@ extern "C" IMAGE_DOS_HEADER __ImageBase;
#include <string>
-#include "base/base_api.h"
+#include "base/base_export.h"
#include "base/string16.h"
class FilePath;
@@ -38,14 +38,14 @@ class FileVersionInfo {
// Creates a FileVersionInfo for the specified path. Returns NULL if something
// goes wrong (typically the file does not exit or cannot be opened). The
// returned object should be deleted when you are done with it.
- BASE_API static FileVersionInfo* CreateFileVersionInfo(
+ BASE_EXPORT static FileVersionInfo* CreateFileVersionInfo(
const FilePath& file_path);
#endif // OS_WIN || OS_MACOSX
#if defined(OS_WIN)
// Creates a FileVersionInfo for the specified module. Returns NULL in case
// of error. The returned object should be deleted when you are done with it.
- BASE_API static FileVersionInfo* CreateFileVersionInfoForModule(
+ BASE_EXPORT static FileVersionInfo* CreateFileVersionInfoForModule(
HMODULE module);
// Creates a FileVersionInfo for the current module. Returns NULL in case
@@ -60,7 +60,7 @@ class FileVersionInfo {
#else
// Creates a FileVersionInfo for the current module. Returns NULL in case
// of error. The returned object should be deleted when you are done with it.
- BASE_API static FileVersionInfo* CreateFileVersionInfoForCurrentModule();
+ BASE_EXPORT static FileVersionInfo* CreateFileVersionInfoForCurrentModule();
#endif // OS_WIN
// Accessors to the different version properties.