Kernel - Slight reworks to timer code
[tpg/acess2.git] / Modules / Libraries / SunRPC / proto.h
1 /*
2  * Acess2 Kernel
3  * - Sun RPC (RFC 1057) implementation
4  * proto.h
5  * - Protocol definition
6  */
7 #ifndef _SUNRPC_PROTO_H_
8 #define _SUNRPC_PROTO_H_
9
10 struct sRPC_CallBody
11 {
12         Uint32  RPCVers;        //!< Version (2)
13         Uint32  Program;        //!< Program Identifier
14         Uint32  Version;        //!< Program Version
15         
16 };
17
18 struct sRPC_Message
19 {
20         tNet32  XID;    //!< Transaction Identifier
21         union
22         {
23                 struct sRPC_CallBody    Call;
24         };
25 };
26
27 #endif
28

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