예제 #1
0
 public ProgressForm(CoreDll.LocalActionType action, CoreDll.TargetType target, CoreLib core, Options options, CoreOptions coreOptions, MainSplitContainer mainSplitContainer)
 {
     m_type   = Type.ApplyAction;
     m_action = action;
     m_target = target;
     Initialize(core, options, coreOptions, mainSplitContainer);
 }
예제 #2
0
        public void MakeAction(CoreDll.LocalActionType action, CoreDll.TargetType target)
        {
            m_makeAction = true;
            ProgressForm progressForm = new ProgressForm(action, target, m_core, m_options, m_coreOptions, m_mainSplitContainer);

            progressForm.Execute();
            m_makeAction = false;
        }
예제 #3
0
 public bool ApplyToResult(CoreDll.LocalActionType localActionType, CoreDll.TargetType targetType)
 {
     return(m_dll.adResultApplyTo(m_handle, localActionType, targetType) == CoreDll.Error.Ok);
 }