plugin.h

来自「一款开源的soap库」· C头文件 代码 · 共 19 行

H
19
字号
/*	plugin.h	Example gSOAP plug-in	Copyright (C) 2000-2002 Robert A. van Engelen. All Rights Reserved.*/#include "stdsoap2.h"#define PLUGIN_ID "PLUGIN-1.0" /* plugin identification */struct plugin_data{ int (*fsend)(struct soap*, const char*, size_t); /* example: to save and use send callback */  size_t (*frecv)(struct soap*, char*, size_t); /* example: to save and use recv callback */};int plugin(struct soap *soap, struct soap_plugin *plugin, void *arg);

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?