os/kernel/rpc.h
2020-07-25 16:54:37 -05:00

17 lines
264 B
C

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