Search
Module:
Directory

   Desktop Functions:

   Smart Device Functions:


Show Recent Changes
Subscribe (RSS)
Misc. Pages
Comments
FAQ
Helpful Tools
Playground
Suggested Reading
Website TODO List
Download Visual Studio Add-In

RM_APP_STATUS (Enums)
 
.

C# Definition:

  /// <summary>
  /// Describes the current status of an application that is acted upon by the Restart Manager.
  /// </summary>
  public enum RM_APP_STATUS : uint
  {
    /// <summary>
    /// Application in unknown state or state not important.
    /// </summary>
    RmStatusUnknown = 0x0,

    /// <summary>
    /// Application is currently running.
    /// </summary>
    RmStatusRunning = 0x1,

    /// <summary>
    /// Application stopped by Restart Manager.
    /// </summary>
    RmStatusStopped = 0x2,

    /// <summary>
    /// Application detected stopped by outside action.
    /// </summary>
    RmStatusStoppedOther = 0x4,

    /// <summary>
    /// Application restarted by Restart Manager.
    /// </summary>
    RmStatusRestarted = 0x8,

    /// <summary>
    /// An error occurred when stopping this application.
    /// </summary>
    RmStatusErrorOnStop = 0x10,

    /// <summary>
    /// An error occurred when restarting this application.
    /// </summary>
    RmStatusErrorOnRestart = 0x20,

    /// <summary>
    /// Shutdown action masked by filer.
    /// </summary>
    RmStatusShutdownMasked = 0x40,

    /// <summary>
    /// Restart action masked by filter.
    /// </summary>
    RmStatusRestartMasked = 0x80
  }

Documentation
 

Please edit this page!

Do you have...

  • helpful tips?
  • corrections to the existing content?
  • additional languages you want to include?

Select "Edit This Page" on the right hand toolbar and edit it!

 
Access PInvoke.net directly from VS:
Terms of Use
Edit This Page
Find References
Show Printable Version
Revisions