~ifolder-dev/simias/trunk-packaging

« back to all changes in this revision

Viewing changes to tools/gsoap/macosx-x86-2.7/extras/.svn/text-base/plugin.h.svn-base

  • Committer: Jorge O. Castro
  • Date: 2007-12-03 06:56:46 UTC
  • Revision ID: jorge@ubuntu.com-20071203065646-mupcnjcwgm5mnhyt
* Remove a bunch of .svn directories we no longer need.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*      plugin.h
2
 
 
3
 
        Example gSOAP plug-in
4
 
 
5
 
        Copyright (C) 2000-2002 Robert A. van Engelen. All Rights Reserved.
6
 
 
7
 
*/
8
 
 
9
 
#include "stdsoap2.h"
10
 
 
11
 
#define PLUGIN_ID "PLUGIN-1.0" /* plugin identification */
12
 
 
13
 
struct plugin_data
14
 
{ int (*fsend)(struct soap*, const char*, size_t); /* example: to save and use send callback */
15
 
  size_t (*frecv)(struct soap*, char*, size_t); /* example: to save and use recv callback */
16
 
};
17
 
 
18
 
int plugin(struct soap *soap, struct soap_plugin *plugin, void *arg);