Index: content/common/section_util_win.h |
diff --git a/content/common/section_util_win.h b/content/common/section_util_win.h |
index b07239a4b87d4fd3a1695239c5a8dccf18d19102..0815b060ce224b4ecf6f445b3fd00a0451fbd7e5 100644 |
--- a/content/common/section_util_win.h |
+++ b/content/common/section_util_win.h |
@@ -6,6 +6,8 @@ |
#define CONTENT_COMMON_SECTION_UTIL_WIN_H_ |
#pragma once |
+#include "content/common/content_export.h" |
darin (slow to review)
2011/09/04 15:41:04
nit: include system headers first
Dirk Pranke
2011/09/07 01:46:07
Done.
|
+ |
#include <windows.h> |
namespace chrome { |
@@ -16,7 +18,10 @@ HANDLE GetSectionFromProcess(HANDLE section, HANDLE process, bool read_only); |
// Duplicates a section handle from the current process for use in another |
// process. Returns the new valid handle or NULL on failure. |
-HANDLE GetSectionForProcess(HANDLE section, HANDLE process, bool read_only); |
+CONTENT_EXPORT HANDLE GetSectionForProcess( |
+ HANDLE section, |
+ HANDLE process, |
+ bool read_only); |
} // namespace chrome |