fnRemoveShapes


Prototype

void __cdecl fnRemoveShapes ( unsigned long ulThemeKey ); 

Return value

None

Parameters

ulThemeKey

Theme specific data. This value was defined by the plugin in the fnLoadShapes function.

Remarks

Clean up all theme specific data here. Also, if there are separate threads collecting data for this theme, they should terminate before this fuction exits.

Example

void __cdecl fnRemoveShapes ( unsigned long ulThemeKey )
{
    MyThemeData *pData = (MyThemeData*) ulThemeKey;
    CleanUp(pData);
} 

See Also

Loader API, fnLoadShapes