From 8d128d6b9ef0096c874fafb9f80cbb5a03c98f4c Mon Sep 17 00:00:00 2001 From: "dpranke@chromium.org" Date: Tue, 13 Sep 2011 22:11:57 +0000 Subject: Annotate all of the functions in content that need to be exported, in preparation for creating a content shared library. R=darin@chromium.org, jam@chromium.org, willchan@chromium.org BUG=90442 TEST=everything still compiles Review URL: http://codereview.chromium.org/7800015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@100975 0039d316-1c4b-4281-b951-d872f2087c98 --- content/common/section_util_win.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'content/common/section_util_win.h') diff --git a/content/common/section_util_win.h b/content/common/section_util_win.h index b07239a..fa08df9 100644 --- a/content/common/section_util_win.h +++ b/content/common/section_util_win.h @@ -8,6 +8,8 @@ #include +#include "content/common/content_export.h" + namespace chrome { // Duplicates a section handle from another process to the current process. @@ -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 -- cgit v1.1