; This is just an example of System Plugin
; 
; (c) BSForce, 2002

!define EWX_LOGOFF          0
!define EWX_SHUTDOWN        0x00000001
!define EWX_REBOOT          0x00000002
!define EWX_FORCE           0x00000004
!define EWX_POWEROFF        0x00000008

Name "System Plugin Example"
OutFile "SystemEx.exe"

Section "ThisNameIsIgnoredSoWhyBother?"
   System::FullCall "user32?ExitWindowsEx?iii" "ss?snn" ${EWX_LOGOFF} 0
   Pop $0
SectionEnd 

; eof
