| OLD | NEW |
| (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 // We are going to do the 'process attach initialization manually via | |
| 22 // DoDeferredCrtInit but we need to let the DLL_THREAD_ATTACH calls work. | |
| 23 if (reason == DLL_PROCESS_ATTACH) | |
| 24 return 1; | |
| 25 return _DllMainCRTStartup(hinstance, reason, reserved); | |
| 26 } | |
| 27 | |
| 28 __declspec(dllexport) BOOL __stdcall DoDeferredCrtInit(HINSTANCE hinstance) { | |
| 29 return _DllMainCRTStartup(hinstance, DLL_PROCESS_ATTACH, NULL); | |
| 30 } | |
| 31 | |
| 32 // This function is needed for the linker to succeed. It seems to pick the | |
| 33 // CRT lib based on the existence of "DllMain", and since we're renaming that, | |
| 34 // it instead chooses the one that links against "main". This function should | |
| 35 // never be called. | |
| 36 int main() { | |
| 37 __debugbreak(); | |
| 38 } | |
| 39 | |
| 40 } | |
| OLD | NEW |