winget-cli

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

Debugging.h (324B)


      1 // Copyright (c) Microsoft Corporation.
      2 // Licensed under the MIT License.
      3 #pragma once
      4 
      5 namespace AppInstaller::Debugging
      6 {
      7     // Enables a self initiated minidump on certain process level failures.
      8     void EnableSelfInitiatedMinidump();
      9 
     10     // Forces the minidump to be written.
     11     void WriteMinidump();
     12 }