Ejemplo n.º 1
0
FudgeStatus FudgeMsgEnvelope_retain ( FudgeMsgEnvelope envelope )
{
    if ( ! envelope )
        return FUDGE_NULL_POINTER;

    FudgeRefCount_increment ( envelope->refcount );
    return FUDGE_OK;
}
Ejemplo n.º 2
0
FudgeStatus FudgeMsg_retain ( FudgeMsg message )
{
    if ( ! message )
        return FUDGE_NULL_POINTER;

    FudgeRefCount_increment ( message->refcount );
    return FUDGE_OK;
}