A function you must write to bring the resource editor window to front
typedef void ResPluginToFrontF_t ( ResPluginHandle_t handle )
This function is exported in the ResPluginFullEditor_t structure.
This function is called by PhAB to indicate that the plugin should bring the full editor's window to the front.
This sample function is from the complete plugin example at the end of this chapter.
static void plugin_full_to_front( ResPluginHandle_t handle ) { PluginFullInstance_t *instance = ( PluginFullInstance_t * ) handle; instance->exp->to_front( instance->convenience_handle ); }
QNX Neutrino
ResPluginFrugalCreateF_t, ResPluginFullCreateF_t, ResPluginFullEditor_t.