| Index: src/untrusted/nacl/nacl_irt_opt.h
|
| diff --git a/src/untrusted/nacl/nacl_irt_opt.h b/src/untrusted/nacl/nacl_irt_opt.h
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..8fe8e262e617843192be4260d5e4e79da144f955
|
| --- /dev/null
|
| +++ b/src/untrusted/nacl/nacl_irt_opt.h
|
| @@ -0,0 +1,32 @@
|
| +/*
|
| + * Copyright (c) 2013 The Native Client Authors. All rights reserved.
|
| + * Use of this source code is governed by a BSD-style license that can be
|
| + * found in the LICENSE file.
|
| + */
|
| +
|
| +#ifndef NATIVE_CLIENT_SRC_UNTRUSTED_IRT_IRT_OPT_H_
|
| +#define NATIVE_CLIENT_SRC_UNTRUSTED_IRT_IRT_OPT_H_
|
| +
|
| +#include "native_client/src/untrusted/irt/irt.h"
|
| +
|
| +#ifdef __cplusplus
|
| +extern "C" {
|
| +#endif
|
| +
|
| +struct nacl_irt_opt {
|
| + const char *opt;
|
| + unsigned long offset;
|
| + int value;
|
| +};
|
| +
|
| +struct nacl_irt_args {
|
| + int argc;
|
| + char *argv;
|
| + int allocated;
|
| +};
|
| +
|
| +#ifdef __cplusplus
|
| +}
|
| +#endif
|
| +
|
| +#endif /* NATIVE_CLIENT_SRC_UNTRUSTED_IRT_IRT_OPT_H_ */
|
|
|