17 lines
264 B
C
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
|