git.ucc.asn.au
/
tpg
/
acess2.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Lots of work on the AcessNative kernel
[tpg/acess2.git]
/
AcessNative
/
ld-acess_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