Import everything
[cl-w32api.git] / modules / win95.file-mapping.lisp
blobd7def4bcfdd71cf81d75427fc646ec4bbed17847
1 (defcfunex-exported ("CreateFileMappingA" CreateFileMappingA :convention :stdcall) :pointer
2 (arg0 :pointer)
3 (arg1 :pointer)
4 (arg2 :unsigned-long)
5 (arg3 :unsigned-long)
6 (arg4 :unsigned-long)
7 (arg5 :string))
9 (defcfunex-exported ("CreateFileMappingW" CreateFileMappingW :convention :stdcall) :pointer
10 (arg0 :pointer)
11 (arg1 :pointer)
12 (arg2 :unsigned-long)
13 (arg3 :unsigned-long)
14 (arg4 :unsigned-long)
15 (arg5 :pointer))
17 (defcfunex-exported ("FlushViewOfFile" FlushViewOfFile :convention :stdcall) :int
18 (arg0 :pointer)
19 (arg1 :unsigned-long))
21 (defcfunex-exported ("MapViewOfFile" MapViewOfFile :convention :stdcall) :pointer
22 (arg0 :pointer)
23 (arg1 :unsigned-long)
24 (arg2 :unsigned-long)
25 (arg3 :unsigned-long)
26 (arg4 :unsigned-long))
28 (defcfunex-exported ("MapViewOfFileEx" MapViewOfFileEx :convention :stdcall) :pointer
29 (arg0 :pointer)
30 (arg1 :unsigned-long)
31 (arg2 :unsigned-long)
32 (arg3 :unsigned-long)
33 (arg4 :unsigned-long)
34 (arg5 :pointer))
36 (defcfunex-exported ("OpenFileMappingA" OpenFileMappingA :convention :stdcall) :pointer
37 (arg0 :unsigned-long)
38 (arg1 :int)
39 (arg2 :string))
41 (defcfunex-exported ("OpenFileMappingW" OpenFileMappingW :convention :stdcall) :pointer
42 (arg0 :unsigned-long)
43 (arg1 :int)
44 (arg2 :pointer))
46 (defcfunex-exported ("UnmapViewOfFile" UnmapViewOfFile :convention :stdcall) :int
47 (arg0 :pointer))