summaryrefslogtreecommitdiffstats
path: root/content/app/content_main.h
diff options
context:
space:
mode:
Diffstat (limited to 'content/app/content_main.h')
-rw-r--r--content/app/content_main.h13
1 files changed, 7 insertions, 6 deletions
diff --git a/content/app/content_main.h b/content/app/content_main.h
index 386902d..f12f542 100644
--- a/content/app/content_main.h
+++ b/content/app/content_main.h
@@ -7,6 +7,7 @@
#pragma once
#include "build/build_config.h"
+#include "content/common/content_export.h"
#if defined(OS_WIN)
#include <windows.h>
@@ -28,13 +29,13 @@ class ContentMainDelegate;
// |sandbox_info| should be initialized using InitializeSandboxInfo from
// content_main_win.h
-int ContentMain(HINSTANCE instance,
- sandbox::SandboxInterfaceInfo* sandbox_info,
- ContentMainDelegate* delegate);
+CONTENT_EXPORT int ContentMain(HINSTANCE instance,
+ sandbox::SandboxInterfaceInfo* sandbox_info,
+ ContentMainDelegate* delegate);
#else
-int ContentMain(int argc,
- const char** argv,
- ContentMainDelegate* delegate);
+CONTENT_EXPORT int ContentMain(int argc,
+ char** argv,
+ ContentMainDelegate* delegate);
#endif
} // namespace content