/// <summary>
 /// Registers a warning to be displayed when the user deactivates the specified plugin in the mod manager.
 /// </summary>
 /// <remarks>
 /// This method is ignored. Registering warnings is not supported by the currect implementation of the mod
 /// manager.
 /// </remarks>
 /// <param name="p_strPlugin">The plugin for which to register a warning.</param>
 /// <param name="p_dwtWarningType">The type of warning to register.</param>
 private void SetDeactivationWarning(string p_strPlugin, DeactivationWarningType p_dwtWarningType)
 {
     //TODO implement registering plugin deactivation warnings
     // in addition to generic warning types, we should allow custom messages
 }
		/// <summary>
		/// Registers a warning to be displayed when the user deactivates the specified plugin in the mod manager.
		/// </summary>
		/// <remarks>
		/// This method is ignored. Registering warnings is not supported by the currect implementation of the mod
		/// manager.
		/// </remarks>
		/// <param name="p_strPlugin">The plugin for which to register a warning.</param>
		/// <param name="p_dwtWarningType">The type of warning to register.</param>
		private void SetDeactivationWarning(string p_strPlugin, DeactivationWarningType p_dwtWarningType)
		{
			//TODO implement registering plugin deactivation warnings
			// in addition to generic warning types, we should allow custom messages
		}
        /// <summary>
        /// Registers a warning to be displayed when the user deactivates the specified plugin in the mod manager.
        /// </summary>
        /// <remarks>
        /// This method is ignored. Registering warnings is not supported by the currect implementation of the mod
        /// manager.
        /// </remarks>
        /// <param name="p_strPlugin">The plugin for which to register a warning.</param>
        /// <param name="p_strWarningType">The type of warning to register.</param>
        public void SetDeactivationWarning(string p_strPlugin, string p_strWarningType)
        {
            DeactivationWarningType dwtWarningType = (DeactivationWarningType)Enum.Parse(typeof(DeactivationWarningType), p_strWarningType);

            SetDeactivationWarning(p_strPlugin, dwtWarningType);
        }
 private void SetDeactivationWarning(string p_strPlugin, DeactivationWarningType p_dwtWarningType)
 {
 }