MyOS Kernel
rpc.h
Go to the documentation of this file.
1 
5 #ifndef RPC_H
6 #define RPC_H
7 
11 typedef struct RPCFuncInfo {
12  char name[32];
13  void* (*code)(void*);
14 } RPCFuncInfo;
15 
16 #endif
RPCFuncInfo
Definition: rpc.h:11
RPCFuncInfo::name
char name[32]
THe name of the function.
Definition: rpc.h:12