Index: components/nacl/loader/bare_metal/bare_metal_main.h |
diff --git a/components/nacl/loader/bare_metal/bare_metal_main.h b/components/nacl/loader/bare_metal/bare_metal_main.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..e5b5204ded875819fe2028fa5d4aef50f8a594ec |
--- /dev/null |
+++ b/components/nacl/loader/bare_metal/bare_metal_main.h |
@@ -0,0 +1,20 @@ |
+/* |
+ * 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.
|
+ * Use of this source code is governed by a BSD-style license that can be |
+ * found in the LICENSE file. |
+ */ |
+ |
+#ifndef COMPONENTS_NACL_LOADER_BARE_METAL_BARE_METAL_MAIN_H_ |
+#define COMPONENTS_NACL_LOADER_BARE_METAL_BARE_METAL_MAIN_H_ |
+ |
+#include "native_client/src/include/portability.h" |
+#include "native_client/src/public/imc_types.h" |
+ |
+EXTERN_C_BEGIN |
+ |
+/* Launch NaCl with Bare Metal Mode. */ |
+void NaClBareMetalMainStart(NaClHandle imc_bootstrap_handle); |
+ |
+EXTERN_C_END |
+ |
+#endif /* COMPONENTS_NACL_LOADER_BARE_METAL_BARE_METAL_MAIN_H_ */ |