Hi,
In Adobe Dialog Manager documentation there is such code snippet:
SPErr error = kSPNoError;
SPHostProcs *gHostProcs;
error = sSPRuntime->GetRuntimeHostProcs(&gHostProcs);
if (!error)
{
gHostProcs->startupNotify(kSetMessage,
(void*)"Initializing QuickDraw 3d", gHostProcs->hostData);
}
What is the way from plugin code to obtain that sSPRuntime pointer?