X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=AcessNative%2Fld-acess_src%2Frequest.h;h=f31a633395054d2061cc9b6d31369ce213170c94;hb=13078002b01ee4f63eb2001d2ef479a2a006ea32;hp=8c89e6f6da61e3fc37453521486900c956695446;hpb=a09032f44bba55ce1e60dfab92a39cf6c909220b;p=tpg%2Facess2.git diff --git a/AcessNative/ld-acess_src/request.h b/AcessNative/ld-acess_src/request.h index 8c89e6f6..f31a6333 100644 --- a/AcessNative/ld-acess_src/request.h +++ b/AcessNative/ld-acess_src/request.h @@ -8,19 +8,8 @@ #ifndef _REQUEST_H_ #define _REQUEST_H_ -typedef struct { - char Type; - int Length; - char Data[]; -} tOutValue; +#include "../syscalls.h" -typedef struct { - char Type; - int Length; - void *Data; -} tInValue; - -extern int SendRequest(int RequestID, int NumOutput, tOutValue **Output, - int NumInput, tInValue **Input); +extern int SendRequest(tRequestHeader *Request, int RequestSize, int ResponseSize); #endif