diff options
Diffstat (limited to 'Comm')
| -rw-r--r-- | Comm/newstd.hxx | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/Comm/newstd.hxx b/Comm/newstd.hxx new file mode 100644 index 00000000..9bf690cd --- /dev/null +++ b/Comm/newstd.hxx @@ -0,0 +1,29 @@ +/* -------------------------------------------
+
+ Copyright Zeta Electronics Corporation.
+
+ File: newstd.hxx.
+ Purpose: NewOS standard interface.
+
+------------------------------------------- */
+
+#pragma once
+
+#ifdef __KERNEL__
+#error !!! including header in kernel mode !!!
+#endif // __KERNEL__
+
+class NUser; /// @brief User application class.
+class NCallback; /// @brief User callback class.
+
+#define IMPORT_CXX extern "C++"
+#define IMPORT_C extern "C"
+
+/**
+@brief a class which helps the user do application I/O.
+*/
+class NUser
+{
+public:
+
+};
\ No newline at end of file |
