Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(730)

Side by Side Diff: chrome/split_dll_fake_entry.cc

Issue 15067010: split_link tool, config, and scripts for windows build (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/chrome_dll.gypi ('k') | tools/win/split_link/check_installed.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include <windows.h>
6
7 extern "C" {
8
9 // This entry point and file is used to work around circular dependencies
10 // between the split DLLs. The CRT initialization will fail if done at attach
11 // time. Instead, we defer initialization until after both DLLs are loaded and
12 // then manually call the CRT initialization function (via DoDeferredCrtInit).
13 //
14 // ChromeEmptyEntry is the DLL's entry point.
15
16 BOOL WINAPI _DllMainCRTStartup(HINSTANCE, DWORD, LPVOID);
17
18 BOOL WINAPI ChromeEmptyEntry(HINSTANCE hinstance,
19 DWORD reason,
20 LPVOID reserved) {
21 if (reason != DLL_PROCESS_ATTACH)
22 _DllMainCRTStartup(hinstance, reason, reserved);
23 return 1;
24 }
25
26 __declspec(dllexport) void __stdcall DoDeferredCrtInit(HINSTANCE hinstance) {
27 _DllMainCRTStartup(hinstance, DLL_PROCESS_ATTACH, NULL);
28 }
29
30 // This function is needed for the linker to succeed. It seems to pick the
31 // CRT lib based on the existence of "DllMain", and since we're renaming that,
32 // it instead chooses the one that links against "main". This function should
33 // never be called.
34 int main() {
35 __debugbreak();
36 }
37
38 }
OLDNEW
« no previous file with comments | « chrome/chrome_dll.gypi ('k') | tools/win/split_link/check_installed.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698