2020-07-25 16:54:37 -05:00
|
|
|
/**
|
|
|
|
* \file
|
|
|
|
*/
|
|
|
|
|
2020-07-12 14:30:16 -05:00
|
|
|
#ifndef RPC_H
|
|
|
|
#define RPC_H
|
|
|
|
|
2020-07-25 16:54:37 -05:00
|
|
|
/**
|
|
|
|
* Represents an RPC fumctiom
|
|
|
|
*/
|
2020-07-12 14:30:16 -05:00
|
|
|
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
|
2020-07-12 14:30:16 -05:00
|
|
|
} RPCFuncInfo;
|
|
|
|
|
|
|
|
#endif
|