用exitwindowex关闭系统
用exitwindowex关闭系统<P>为方便用户,有时需要在应用程序中增加退出并关闭计算机的功能,其实只要几行代码即可实现。首先声明api函数:<BR><BR>function long exitwindowsex (long uflags , long dwreserved ) library "user32" <BR>然后在程序中调用:<BR><BR>exitwindowex( 1, 0 )//强行关机</P>
<P>//(2,0) --重启</P>
<P>//(4,0) --注消</P>
<P>//(5,0) --关机</P>
<P>应该还有其它的吧,不知道如何用.</P>
<P>参数型及说明: //不知道怎么用,希望有人说明一下<BR>uflags long,指定下述一个或多个标志(用or运算符合并到一起) <BR>ewx_force 强迫中止没有响应的进程 <BR>ewx_logoff 中止进程,然后注销 <BR>ewx_shutdown 关掉系统电源(如果可能的话,atx电源就可以) <BR>ewx_reboot 重新引导系统 <BR>ewx_shutdown 关闭系统 </P>
<P>dwreserved long,保留,设为零 </P>
页:
[1]