You've already forked linux-packaging-mono
Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
This commit is contained in:
parent
a569aebcfd
commit
e79aa3c0ed
@@ -0,0 +1,39 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <copyright file="PowerModes.cs" company="Microsoft">
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// </copyright>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
/*
|
||||
*/
|
||||
namespace Microsoft.Win32 {
|
||||
using System.Diagnostics;
|
||||
using System;
|
||||
|
||||
/// <devdoc>
|
||||
/// <para> Specifies how the system
|
||||
/// power mode changes.</para>
|
||||
/// </devdoc>
|
||||
public enum PowerModes {
|
||||
|
||||
/// <devdoc>
|
||||
/// <para> The system is about to resume.</para>
|
||||
/// </devdoc>
|
||||
Resume = 1,
|
||||
|
||||
/// <devdoc>
|
||||
/// The power mode status has changed. This may
|
||||
/// indicate a weak or charging battery, a transition
|
||||
/// from AC power from battery, or other change in the
|
||||
/// status of the system power supply.
|
||||
/// </devdoc>
|
||||
StatusChange = 2,
|
||||
|
||||
/// <devdoc>
|
||||
/// The system is about to be suspended.
|
||||
/// </devdoc>
|
||||
Suspend = 3,
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user