Create an array of these, one for each --option you support. */
| 72 | |
| 73 | /* Create an array of these, one for each --option you support. */ |
| 74 | struct plugin_option { |
| 75 | const char *name; |
| 76 | const char *type; |
| 77 | const char *description; |
| 78 | char *(*handle)(const char *str, void *arg); |
| 79 | void *arg; |
| 80 | /* If true, this options *disabled* if allow-deprecated-apis = false */ |
| 81 | bool deprecated; |
| 82 | }; |
| 83 | |
| 84 | /* Create an array of these, one for each notification you subscribe to. */ |
| 85 | struct plugin_notification { |