os/kernel/rpc.h

17 lines
264 B
C
Raw Normal View History

2020-07-25 16:54:37 -05:00
/**
* \file
*/
#ifndef RPC_H
#define RPC_H
2020-07-25 16:54:37 -05:00
/**
* Represents an RPC fumctiom
*/
typedef struct RPCFuncInfo {
2020-07-25 16:54:37 -05:00
char name[32]; //!< THe name of the function
void* (*code)(void*); //!< A pointer to the code that implements the funtcion
} RPCFuncInfo;
#endif