You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Flag tells the computer to log off the current user.
48
+
/// </summary>
49
+
internalconstintEWX_LOGOFF=0x00000000;
50
+
51
+
/// <summary>
52
+
/// Flag tells the computer to shutdown.
53
+
/// </summary>
54
+
internalconstintEWX_SHUTDOWN=0x00000001;
55
+
56
+
/// <summary>
57
+
/// Flag tells the computer to reboot.
58
+
/// </summary>
59
+
internalconstintEWX_REBOOT=0x00000002;
60
+
61
+
/// <summary>
62
+
/// Has no effect if terminal services is enabled. Makes the system to not send the WM_QUERYENDSESSION message. This can cause applications to lose data. Causes the user to logout quickily.
63
+
/// </summary>
64
+
internalconstintEWX_FORCE=0x00000004;
65
+
66
+
internalconstintEWX_POWEROFF=0x00000008;
67
+
68
+
/// <summary>
69
+
/// Forces processes to terminate if they do not respond to system messages.
70
+
/// </summary>
71
+
internalconstintEWX_FORCEIFHUNG=0x00000010;
72
+
73
+
/// <summary>
74
+
/// Partially shuts down the computer for faster startup times.
75
+
/// </summary>
76
+
internalconstintEWX_HYBRID_SHUTDOWN=0x00400000;
77
+
78
+
/// <summary>
79
+
/// Restarts the computer, and launches applications register applications.
0 commit comments