-
Notifications
You must be signed in to change notification settings - Fork 13
Legacy: PmGetPluginAttributes routine
Archie_UwU edited this page Nov 19, 2023
·
1 revision
You are reading the documentation of YYToolkit Legacy (v2.x.x) - for documentation on current-gen YYTK, see the Homepage.
Retrieves an opaque pointer to attributes for a given YYTKPlugin.
YYTKStatus PmGetPluginAttributes(
YYTKPlugin* pObject,
PluginAttributes_t* &outAttributes
);
The plugin object whose attributes you want to query.
A reference to a PluginAttributes_t*
object. You needn't keep a pointer to this object.
The function returns YYTK_OK
if the function succeeds and outAttributes
is set.
The function returns YYTK_INVALIDARG
if pObject
isn't valid.
The function returns YYTK_NOT_FOUND
if the plugin attributes aren't present in the internal list.