ACR_ServerCommunicator.ACR_ServerCommunicator.ConfigureWer C# (CSharp) Méthode

ConfigureWer() private méthode

Configure Windows Error Reporting as appropriate.
private ConfigureWer ( ) : void
Résultat void
        private void ConfigureWer()
        {
            uint Module = GetModule();
            bool WerDisabled = GetLocalInt(Module, "ACR_MOD_WER_DISABLED") != 0;

            DeleteLocalInt(Module, "ACR_MOD_WER_DISABLED");

            if (WerDisabled)
                SystemInfo.DisableWer();
            else
                SystemInfo.EnableWer();
        }
ACR_ServerCommunicator