Ejemplo n.º 1
0
bool ASI::ConnectToFuncSet(CRef src, int caller, CRef target, int funcSet)
{
    bool connected = false;

    Component* pComponent = src.GetInstance();
    if (pComponent != NULL)
    {
        connected = pComponent->ConnectToFuncSet(caller, target, funcSet);
        src.ReleaseInstance();
    }

    return connected;
}