All the Isolation functions do is essentially:
if(NotCreatedActCtx)
{
hActCtx = Create activation context from your manifest
NotCreatedActCtx = FALSE;
}
ActivateActCtx(hActCtx, &cookie)
(The function you were wanting to call, like CreateWindow or whatever)
DeactivateActCtx(0, cookie)