OLD | NEW |
---|---|
(Empty) | |
1 /* | |
2 * Copyright 2013 The Native Client Authors. All rights reserved. | |
Mark Seaborn
2013/12/06 03:21:16
Nit: This should be "The Chromium Authors", as wit
hidehiko
2013/12/06 17:40:02
Oops. Done.
| |
3 * Use of this source code is governed by a BSD-style license that can be | |
4 * found in the LICENSE file. | |
5 */ | |
6 | |
7 #ifndef COMPONENTS_NACL_LOADER_BARE_METAL_BARE_METAL_MAIN_H_ | |
8 #define COMPONENTS_NACL_LOADER_BARE_METAL_BARE_METAL_MAIN_H_ | |
9 | |
10 #include "native_client/src/include/portability.h" | |
11 #include "native_client/src/public/imc_types.h" | |
12 | |
13 EXTERN_C_BEGIN | |
14 | |
15 /* Launch NaCl with Bare Metal Mode. */ | |
16 void NaClBareMetalMainStart(NaClHandle imc_bootstrap_handle); | |
17 | |
18 EXTERN_C_END | |
19 | |
20 #endif /* COMPONENTS_NACL_LOADER_BARE_METAL_BARE_METAL_MAIN_H_ */ | |
OLD | NEW |