OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 // Parameter types for SRPC Invocation. | 5 // Parameter types for SRPC Invocation. |
6 | 6 |
7 #ifndef NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_SRPC_PARAMS_H | 7 #ifndef NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_SRPC_PARAMS_H |
8 #define NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_SRPC_PARAMS_H | 8 #define NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_SRPC_PARAMS_H |
9 | 9 |
10 #include "native_client/src/include/nacl_macros.h" | 10 #include "native_client/src/include/nacl_macros.h" |
(...skipping 30 matching lines...) Expand all Loading... |
41 void FreeAll(); | 41 void FreeAll(); |
42 // The ins_ and outs_ arrays contain one more element, to hold a NULL pointer | 42 // The ins_ and outs_ arrays contain one more element, to hold a NULL pointer |
43 // to indicate the end of the list. | 43 // to indicate the end of the list. |
44 NaClSrpcArg* ins_[NACL_SRPC_MAX_ARGS + 1]; | 44 NaClSrpcArg* ins_[NACL_SRPC_MAX_ARGS + 1]; |
45 NaClSrpcArg* outs_[NACL_SRPC_MAX_ARGS + 1]; | 45 NaClSrpcArg* outs_[NACL_SRPC_MAX_ARGS + 1]; |
46 }; | 46 }; |
47 | 47 |
48 } // namespace plugin | 48 } // namespace plugin |
49 | 49 |
50 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_SRPC_PARAMS_H | 50 #endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_SRPC_PARAMS_H |
OLD | NEW |