Import everything
[cl-w32api.git] / modules / shutdown.lisp
blob6d97e33f4d2cc6ae78b07c8de03a21c9eb4c30b2
1 (cl:in-package w32apimod)
3 (define-w32api-module shutdown :shutdown)
5 (cl:in-package cl-w32api.module.shutdown)
8 (defcfunex-exported ("AbortSystemShutdownA" AbortSystemShutdownA :convention :stdcall) :int
9 (arg0 :string))
11 (defcfunex-exported ("AbortSystemShutdownW" AbortSystemShutdownW :convention :stdcall) :int
12 (arg0 :pointer))
14 (defcfunex-exported ("InitiateSystemShutdownA" InitiateSystemShutdownA :convention :stdcall) :int
15 (arg0 :string)
16 (arg1 :string)
17 (arg2 :unsigned-long)
18 (arg3 :int)
19 (arg4 :int))
21 (defcfunex-exported ("InitiateSystemShutdownW" InitiateSystemShutdownW :convention :stdcall) :int
22 (arg0 :pointer)
23 (arg1 :pointer)
24 (arg2 :unsigned-long)
25 (arg3 :int)
26 (arg4 :int))