summaryrefslogtreecommitdiff
path: root/plugins/MirOTR/otr.vs/inc.vs/sys
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2012-05-19 18:01:32 +0000
committerKirill Volinsky <mataes2007@gmail.com>2012-05-19 18:01:32 +0000
commitb1509f22892dc98057c750e7fae39ded5cea3b09 (patch)
tree6bdcc9379ae86339a67022b758575729d1304074 /plugins/MirOTR/otr.vs/inc.vs/sys
parente7a776a6f5ab323cd9dd824e815846ef268fa7f1 (diff)
added MirOTR
git-svn-id: http://svn.miranda-ng.org/main/trunk@83 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirOTR/otr.vs/inc.vs/sys')
-rw-r--r--plugins/MirOTR/otr.vs/inc.vs/sys/errno.h0
-rw-r--r--plugins/MirOTR/otr.vs/inc.vs/sys/ipc.h0
-rw-r--r--plugins/MirOTR/otr.vs/inc.vs/sys/socket.h0
-rw-r--r--plugins/MirOTR/otr.vs/inc.vs/sys/time.h2
-rw-r--r--plugins/MirOTR/otr.vs/inc.vs/sys/types.h49
-rw-r--r--plugins/MirOTR/otr.vs/inc.vs/sys/un.h0
6 files changed, 51 insertions, 0 deletions
diff --git a/plugins/MirOTR/otr.vs/inc.vs/sys/errno.h b/plugins/MirOTR/otr.vs/inc.vs/sys/errno.h
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/plugins/MirOTR/otr.vs/inc.vs/sys/errno.h
diff --git a/plugins/MirOTR/otr.vs/inc.vs/sys/ipc.h b/plugins/MirOTR/otr.vs/inc.vs/sys/ipc.h
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/plugins/MirOTR/otr.vs/inc.vs/sys/ipc.h
diff --git a/plugins/MirOTR/otr.vs/inc.vs/sys/socket.h b/plugins/MirOTR/otr.vs/inc.vs/sys/socket.h
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/plugins/MirOTR/otr.vs/inc.vs/sys/socket.h
diff --git a/plugins/MirOTR/otr.vs/inc.vs/sys/time.h b/plugins/MirOTR/otr.vs/inc.vs/sys/time.h
new file mode 100644
index 0000000000..038cf1f387
--- /dev/null
+++ b/plugins/MirOTR/otr.vs/inc.vs/sys/time.h
@@ -0,0 +1,2 @@
+
+#include <time.h> \ No newline at end of file
diff --git a/plugins/MirOTR/otr.vs/inc.vs/sys/types.h b/plugins/MirOTR/otr.vs/inc.vs/sys/types.h
new file mode 100644
index 0000000000..5a3e51c4a9
--- /dev/null
+++ b/plugins/MirOTR/otr.vs/inc.vs/sys/types.h
@@ -0,0 +1,49 @@
+
+#pragma once
+
+#include "..\unistd.h"
+
+
+#ifndef _TIME_T_DEFINED
+typedef long time_t;
+#define _TIME_T_DEFINED
+#endif
+
+
+#ifndef _INO_T_DEFINED
+
+typedef unsigned short _ino_t; /* i-node number (not used on DOS) */
+
+#if !__STDC__
+/* Non-ANSI name for compatibility */
+typedef unsigned short ino_t;
+#endif
+
+#define _INO_T_DEFINED
+#endif
+
+
+#ifndef _DEV_T_DEFINED
+
+typedef unsigned int _dev_t; /* device code */
+
+#if !__STDC__
+/* Non-ANSI name for compatibility */
+typedef unsigned int dev_t;
+#endif
+
+#define _DEV_T_DEFINED
+#endif
+
+
+#ifndef _OFF_T_DEFINED
+
+typedef long _off_t; /* file offset value */
+
+#if !__STDC__
+/* Non-ANSI name for compatibility */
+typedef long off_t;
+#endif
+
+#define _OFF_T_DEFINED
+#endif
diff --git a/plugins/MirOTR/otr.vs/inc.vs/sys/un.h b/plugins/MirOTR/otr.vs/inc.vs/sys/un.h
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/plugins/MirOTR/otr.vs/inc.vs/sys/un.h