ACR_ServerCommunicator.ACR_ServerCommunicator.ConfigureWer C# (CSharp) Method

ConfigureWer() private method

Configure Windows Error Reporting as appropriate.
private ConfigureWer ( ) : void
return 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