OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2017 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 #ifndef CHROME_INSTALL_STATIC_INITIALIZE_FROM_PRIMARY_MODULE_H_ | |
6 #define CHROME_INSTALL_STATIC_INITIALIZE_FROM_PRIMARY_MODULE_H_ | |
7 | |
8 namespace install_static { | |
9 | |
10 // Initializes an InstallDetails instance for this module with the payload from | |
11 // the process's primary module (which exports an "GetInstallDetailsPayload" | |
12 // function for this express purpose). | |
Sigurður Ásgeirsson
2017/01/16 18:31:58
doesn't this need to be in an extern "C" declarati
grt (UTC plus 2)
2017/01/16 20:27:33
This function isn't used across DLL boundaries. It
| |
13 void InitializeFromPrimaryModule(); | |
14 | |
15 } // namespace install_static | |
16 | |
17 #endif // CHROME_INSTALL_STATIC_INITIALIZE_FROM_PRIMARY_MODULE_H_ | |
OLD | NEW |