OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2015 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 MOJO_NACL_IRT_MOJO_NONSFI_H_ | |
6 #define MOJO_NACL_IRT_MOJO_NONSFI_H_ | |
7 | |
8 #include "mojo/public/c/system/functions.h" | |
9 | |
10 // Used to pass handle to application. If uncalled, | |
11 // the handle defaults to MOJO_HANDLE_INVALID. | |
12 void MojoSetInitialHandle(MojoHandle handle); | |
Mark Seaborn
2015/09/02 20:27:16
Can you put both of these into a C++ namespace, pl
Sean Klein
2015/09/02 22:36:19
Done.
| |
13 | |
14 // IRT interface query function which may be passed to nacl_irt_nonsfi_entry. | |
15 // Queries for a mojo interface, then for the irt core. | |
16 size_t mojo_irt_nonsfi_query(const char* interface_ident, | |
Mark Seaborn
2015/09/02 20:27:16
Can you make this CamelCase too?
Sean Klein
2015/09/02 22:36:19
Done.
| |
17 void* table, size_t tablesize); | |
18 | |
19 #endif // MOJO_NACL_IRT_MOJO_NONSFI_H_ | |
OLD | NEW |