Files
vms2016_kadisp/cVMS.NET_CS/RunCode/Step/_STEP_WAITSTART.cs
2024-11-26 20:15:16 +09:00

18 lines
340 B
C#

using System;
using System.Collections.Generic;
using System.Drawing;
using System.Linq;
using System.Text;
using COMM;
namespace vmsnet
{
public partial class FMain
{
public StepResult _STEP_WAITSTART(ESMStep step, TimeSpan stepTime, TimeSpan seqTime)
{
PUB.sm.SetNewStep(ESMStep.IDLE);
return StepResult.Complete;
}
}
}