Remove EWK_BRINGUPS for M120 #3
[platform/framework/web/chromium-efl.git] / chrome / app / chrome_exe_main_win.h
1 // Copyright 2021 The Chromium Authors
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_APP_CHROME_EXE_MAIN_WIN_H_
6 #define CHROME_APP_CHROME_EXE_MAIN_WIN_H_
7
8 #include <stdint.h>
9
10 extern "C" {
11
12 #if defined(CHROME_EXE_MAIN)
13 #define CHROME_EXE_MAIN_EXPORT __declspec(dllexport)
14 #else
15 #define CHROME_EXE_MAIN_EXPORT
16 #endif
17
18 // Returns the SHA-256 hashes of the specified .pak files.
19 CHROME_EXE_MAIN_EXPORT __cdecl void GetPakFileHashes(
20     const uint8_t** resources_pak,
21     const uint8_t** chrome_100_pak,
22     const uint8_t** chrome_200_pak);
23
24 #undef CHROME_EXE_MAIN_EXPORT
25
26 }  // extern "C"
27
28 #endif  // CHROME_APP_CHROME_EXE_MAIN_WIN_H_