FreeRDP
|
#include <winpr/wtypes.h>
#include <winpr/collections.h>
#include <freerdp/server/proxy/proxy_modules_api.h>
Functions | |
proxyModule * | pf_modules_new (const char *root_dir, const char **modules, size_t count) |
BOOL | pf_modules_add (proxyModule *module, proxyModuleEntryPoint ep, void *userdata) |
pf_modules_add Registers a new plugin More... | |
BOOL | pf_modules_is_plugin_loaded (proxyModule *module, const char *plugin_name) |
void | pf_modules_list_loaded_plugins (proxyModule *module) |
BOOL | pf_modules_run_filter (proxyModule *module, PF_FILTER_TYPE type, proxyData *pdata, void *param) |
BOOL | pf_modules_run_hook (proxyModule *module, PF_HOOK_TYPE type, proxyData *pdata, void *custom) |
void | pf_modules_free (proxyModule *module) |
enum PF_FILTER_TYPE |
FreeRDP: A Remote Desktop Protocol Implementation FreeRDP Proxy Server
Copyright 2019 Kobi Mizrachi kmizr Copyright 2019 Idan Freiberg achi 18@gm ail. comspeid y@gm ail.c om
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
enum PF_HOOK_TYPE |
BOOL pf_modules_add | ( | proxyModule * | module, |
proxyModuleEntryPoint | ep, | ||
void * | userdata | ||
) |
pf_modules_add Registers a new plugin
ep | A module entry point function, must NOT be NULL |
void pf_modules_free | ( | proxyModule * | module | ) |
BOOL pf_modules_is_plugin_loaded | ( | proxyModule * | module, |
const char * | plugin_name | ||
) |
void pf_modules_list_loaded_plugins | ( | proxyModule * | module | ) |
proxyModule* pf_modules_new | ( | const char * | root_dir, |
const char ** | modules, | ||
size_t | count | ||
) |
BOOL pf_modules_run_filter | ( | proxyModule * | module, |
PF_FILTER_TYPE | type, | ||
proxyData * | pdata, | ||
void * | param | ||
) |
BOOL pf_modules_run_hook | ( | proxyModule * | module, |
PF_HOOK_TYPE | type, | ||
proxyData * | pdata, | ||
void * | custom | ||
) |