blob: 509d57886b596f38d6af237bb5dcfbd0ef7e9ff1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef REGISTRY_H_INCLUDED
#define REGISTRY_H_INCLUDED
#include "xmlrpc-c/base.h"
#include "xmlrpc-c/server.h"
void
xmlrpc_dispatchCall(struct _xmlrpc_env * const envP,
struct xmlrpc_registry * const registryP,
const char * const methodName,
struct _xmlrpc_value * const paramArrayP,
void * const callInfoP,
struct _xmlrpc_value ** const resultPP);
#endif
|