回调结构体

本章节介绍各种插件 SDK 回调结构。

这些结构在事件回调中使用(使用 _plugin_registercallback 注册)。

请注意,指针‘void* callbackInfo’永远不会为 NULL,但各种结构的成员可以为 NULL。

还要记住,不能在回调函数范围内使用任何提供的指针。

通常在回调中进行避开耗时的操作,在单独的线程中执行这些操作。

您可以使用 _plugin_registercallback 函数注册回调。回调的类型定义是:

void CBPLUGIN( CBTYPE bType //event type (useful when you use the same function for multiple events void* callbackInfo //pointer to a structure of information (see below) );

目录: