📄 plugin.h
字号:
/* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -