Exemplo n.º 1
0
XnStatus LinkInputStream::Start()
{
	if(++m_streamingRefcount == 1)
	{
		return StartImpl();
	}
	return XN_STATUS_OK;
}
Exemplo n.º 2
0
ResultCode Applet::Start(const Service::APT::AppletStartupParameter& parameter) {
    ResultCode result = StartImpl(parameter);
    if (result.IsError())
        return result;
    // Schedule the update event
    CoreTiming::ScheduleEvent(usToCycles(applet_update_interval_us), applet_update_event, static_cast<u64>(id));
    return result;
}
Exemplo n.º 3
0
bool CSpyHookBase::Start()
{
    bool bRet = false;
    if (m_bInit && m_hHookHandle == NULL)
    {
        bRet = StartImpl();
        if (bRet)
        {
            CSpyManager::GetInstance()->RegisterHook(this);
        }
    }
    return bRet;
}
Exemplo n.º 4
0
void Argon::Thread::Start(ThreadTarget *NewTarget)
{
	m_RunnableObject = NewTarget;
	StartImpl();
}
Exemplo n.º 5
0
void Argon::Thread::Start()
{
	StartImpl();
}