Import everything
[cl-w32api.git] / modules / win95.mailslot.lisp
blobcbd42102e3f03ec1080e426ca6ab8e349de0cd04
2 (defcfunex-exported ("CreateMailslotA" CreateMailslotA :convention :stdcall) :pointer
3 (arg0 :string)
4 (arg1 :unsigned-long)
5 (arg2 :unsigned-long)
6 (arg3 :pointer))
8 (defcfunex-exported ("CreateMailslotW" CreateMailslotW :convention :stdcall) :pointer
9 (arg0 :pointer)
10 (arg1 :unsigned-long)
11 (arg2 :unsigned-long)
12 (arg3 :pointer))
14 (defcfunex-exported ("GetMailslotInfo" GetMailslotInfo :convention :stdcall) :int
15 (arg0 :pointer)
16 (arg1 :pointer)
17 (arg2 :pointer)
18 (arg3 :pointer)
19 (arg4 :pointer))
21 (defcfunex-exported ("SetMailslotInfo" SetMailslotInfo :convention :stdcall) :int
22 (arg0 :pointer)
23 (arg1 :unsigned-long))