|
OLD | NEW |
---|---|
(Empty) | |
1 /* | |
2 * Copyright (c) 2011 The Native Client Authors. All rights reserved. | |
3 * Use of this source code is governed by a BSD-style license that can be | |
4 * found in the LICENSE file. | |
5 */ | |
6 #ifndef NATIVE_CLIENT_SRC_TRUSTED_REVERSE_SERVICE_MANIFEST_RPC_H_ | |
7 #define NATIVE_CLIENT_SRC_TRUSTED_REVERSE_SERVICE_MANIFEST_RPC_H_ | |
8 | |
noelallen_use_chromium
2011/06/14 02:25:45
Q: Avoiding use of a *.srpc file? Reduces the com
bsy
2011/06/14 20:30:03
Bsy caveman. Bsy wrote srpc before srpc files.
T
noelallen_use_chromium
2011/06/14 22:08:14
agreed.
On 2011/06/14 20:30:03, bsy wrote:
| |
9 /* | |
10 * Manifest RPC signatures, for use by C and C++ code. | |
11 */ | |
12 | |
13 #define NACL_MANIFEST_LIST "manifest_list::C" | |
14 #define NACL_MANIFEST_LOOKUP "manifest_lookup:si:ihC" | |
15 #define NACL_MANIFEST_UNREF "mainfest_unref:C:" | |
16 | |
17 #endif | |
OLD | NEW |