Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(567)

Unified Diff: src/untrusted/nacl/nacl_irt_opt.h

Issue 25027006: Stackable IRT Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/untrusted/nacl/nacl_irt_module.c ('k') | src/untrusted/nacl/start.c » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_ */
« no previous file with comments | « src/untrusted/nacl/nacl_irt_module.c ('k') | src/untrusted/nacl/start.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698