summaryrefslogtreecommitdiff
path: root/src/common/include/tce
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/include/tce')
-rw-r--r--src/common/include/tce/Folder_common.h10
-rw-r--r--src/common/include/tce/Object_common.h10
2 files changed, 20 insertions, 0 deletions
diff --git a/src/common/include/tce/Folder_common.h b/src/common/include/tce/Folder_common.h
new file mode 100644
index 0000000..b1037dd
--- /dev/null
+++ b/src/common/include/tce/Folder_common.h
@@ -0,0 +1,10 @@
+#ifndef DEF_TCE_FOLDER_H
+#define DEF_TCE_FOLDER_H
+
+#define FILENAME_MAX_LEN 256
+
+struct FolderMethods {
+ int GetChildNameAt;
+};
+
+#endif
diff --git a/src/common/include/tce/Object_common.h b/src/common/include/tce/Object_common.h
new file mode 100644
index 0000000..70a034e
--- /dev/null
+++ b/src/common/include/tce/Object_common.h
@@ -0,0 +1,10 @@
+#ifndef DEF_OBJECT_U_H
+#define DEF_OBJECT_U_H
+
+#define E_INVALID -2
+#define E_BAD_HANDLE -3
+#define E_NOT_IMPLEMENTED -4
+#define E_NOT_PUBLIC -5
+#define E_NOT_FOUND -6
+
+#endif