public bool CheckHasActiveLinks(Mods.IMod p_modMod)
 {
     throw new NotImplementedException();
 }
 public BackgroundTasks.IBackgroundTask ActivatingMod(Mods.IMod p_modMod, bool p_booDisabling, UI.ConfirmActionMethod p_camConfirm)
 {
     throw new NotImplementedException();
 }
 public void FinalizeModActivation(Mods.IMod p_modMod)
 {
     throw new NotImplementedException();
 }
 public void LogIniEdits(Mods.IMod p_modMod, string p_strSettingsFileName, string p_strSection, string p_strKey, string p_strValue)
 {
     throw new NotImplementedException();
 }
 public void DisableModFiles(Mods.IMod p_modMod)
 {
     throw new NotImplementedException();
 }
 public void EnableMod(Mods.IMod p_modMod)
 {
     throw new NotImplementedException();
 }
 public void RemoveFileLink(string p_strFilePath, Mods.IMod p_modMod)
 {
     throw new NotImplementedException();
 }
 public void RemoveFileLink(IVirtualModLink p_ivlVirtualLink, Mods.IMod p_modMod)
 {
     throw new NotImplementedException();
 }
 public string AddFileLink(Mods.IMod p_modMod, string p_strBaseFilePath, string p_strSourceFile, bool p_booIsSwitching, bool p_booIsRestoring, bool p_booHandlePlugin, int p_intPriority)
 {
     throw new NotImplementedException();
 }
 public void AddInactiveLink(Mods.IMod p_modMod, string p_strBaseFilePath, int p_intPriority)
 {
     throw new NotImplementedException();
 }
 public int CheckFileLink(string p_strFilePath, out Mods.IMod p_modMod, out List <IVirtualModLink> lstFileLinks)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 12
0
 public string AddFileLink(Mods.IMod p_modMod, string p_strBaseFilePath, string p_strSourceFile, bool p_booIsSwitching, bool p_booHandlePlugin)
 {
     // nop, linking is done by MO
     return(string.Empty);
 }
Ejemplo n.º 13
0
 public string AddFileLink(Mods.IMod p_modMod, string p_strBaseFilePath, string p_strSourceFile, bool p_booIsSwitching)
 {
     return(AddFileLink(p_modMod, p_strBaseFilePath, p_strSourceFile, p_booIsSwitching, false));
 }