summaryrefslogtreecommitdiffhomepage
path: root/src/internal/ntux_driver_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/internal/ntux_driver_impl.h')
-rw-r--r--src/internal/ntux_driver_impl.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/internal/ntux_driver_impl.h b/src/internal/ntux_driver_impl.h
new file mode 100644
index 0000000..815f3ef
--- /dev/null
+++ b/src/internal/ntux_driver_impl.h
@@ -0,0 +1,33 @@
+#ifndef NTUX_DRIVER_IMPL_H
+#define NTUX_DRIVER_IMPL_H
+
+#include <ntapi/ntapi.h>
+#include <psxscl/psxscl.h>
+#include <stdint.h>
+#include <stdio.h>
+
+#include <ntux/ntux.h>
+#include "argv/argv.h"
+
+extern const struct argv_option ntux_default_options[];
+extern const ntapi_vtbl * ntux_ntapi;
+
+#define ntapi ntux_ntapi
+
+enum app_tags {
+ TAG_HELP,
+ TAG_VERSION,
+};
+
+struct ntux_driver_ctx_impl {
+ struct ntux_common_ctx cctx;
+ struct ntux_driver_ctx ctx;
+ struct __psx_context xctx;
+ const char * eunit;
+ struct ntux_error_info ** errinfp;
+ struct ntux_error_info ** erricap;
+ struct ntux_error_info * erriptr[64];
+ struct ntux_error_info erribuf[64];
+};
+
+#endif