8c89e6f6da61e3fc37453521486900c956695446
[tpg/acess2.git] / AcessNative / ld-acess.so_src / request.h
1 /*
2  * Acess2 - AcessNative
3  * ld-acess
4  *
5  * request.h - IPC Request common header
6  */
7
8 #ifndef _REQUEST_H_
9 #define _REQUEST_H_
10
11 typedef struct {
12         char    Type;
13          int    Length;
14         char    Data[];
15 }       tOutValue;
16
17 typedef struct {
18         char    Type;
19          int    Length;
20         void    *Data;
21 }       tInValue;
22
23 extern int SendRequest(int RequestID, int NumOutput, tOutValue **Output,
24         int NumInput, tInValue **Input);
25
26 #endif

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