Renamed ld-acess.so_src directory to ld-acess_src
[tpg/acess2.git] / AcessNative / ld-acess_src / request.h
diff --git a/AcessNative/ld-acess_src/request.h b/AcessNative/ld-acess_src/request.h
new file mode 100644 (file)
index 0000000..8c89e6f
--- /dev/null
@@ -0,0 +1,26 @@
+/*
+ * Acess2 - AcessNative
+ * ld-acess
+ *
+ * request.h - IPC Request common header
+ */
+
+#ifndef _REQUEST_H_
+#define _REQUEST_H_
+
+typedef struct {
+       char    Type;
+        int    Length;
+       char    Data[];
+}      tOutValue;
+
+typedef struct {
+       char    Type;
+        int    Length;
+       void    *Data;
+}      tInValue;
+
+extern int SendRequest(int RequestID, int NumOutput, tOutValue **Output,
+       int NumInput, tInValue **Input);
+
+#endif

UCC git Repository :: git.ucc.asn.au