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

EWX (Constants)
 
.
Summary
TODO - a short description of this collection of constants

C# Constants:

private const UInt32 EWX_LOGOFF          = 0x00000000;
private const UInt32 EWX_SHUTDOWN        = 0x00000001;
private const UInt32 EWX_REBOOT          = 0x00000002;
private const UInt32 EWX_FORCE           = 0x00000004;
private const UInt32 EWX_POWEROFF        = 0x00000008;
private const UInt32 EWX_FORCEIFHUNG    = 0x00000010; // Supported on Windows 2000 and larger

// For the meaning of this enum take a look at

// http://msdn.microsoft.com/library/default.asp?url=/library/en-us/sysinfo/base/exitwindowsex.asp

public enum EWX

{

    EWX_LOGOFF      = 0x00,
    EWX_SHUTDOWN    = 0x01,
    EWX_REBOOT      = 0x02,
    EWX_FORCE           = 0x04,
    EWX_POWEROFF    = 0x08,
    EWX_FORCEIFHUNG = 0x10

}

VB Constants:

TODO

Notes:

None.

 

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
Find References
Show Printable Version
Revisions