Пример #1
0
STDMETHODIMP CAgentCtl::Play()
{
	m_Instruction.MoveFirst();

	while (m_Instruction.MoveNext() == S_OK)
		ProcessInstruction(m_Instruction);

	return S_OK;
}
Пример #2
0
spv_result_t ValidateInstructionAndUpdateValidationState(
    ValidationState_t* vstate, const spv_parsed_instruction_t* inst) {
  return ProcessInstruction(vstate, inst);
}