ChangeSet ID: 8576 CVSROOT: /home/winehq/opt/cvs-commit Module name: wine Changes by: julliard@wine.codeweavers.com 2003/06/23 21:32:01
Modified files: server : trace.c protocol.def file.c misc : registry.c include/wine : server_protocol.h include : winternl.h files : file.c dlls/ntdll : ntdll.spec file.c dlls/kernel : kernel_private.h Makefile.in Added files: dlls/kernel : file16.c file.c
Log message: Eric Pouech pouech-eric@wanadoo.fr - start moving a few file related functions from files/file.c to dlls/kernel subdir (also splitting 16bit APIs in a separate file) - implemented ntdll.Nt{Lock|Unlock}File, and made use of those for the kernel32 equivalent - implemented a few information classes in NtQueryInformationFile and NtSetInformationFile (still lots of missing classes) - enhanced the get_file_info server request in order to implement correctly NtQueryInformationFile (change time & file alloc size) - rewrote registry loading to comply with latest changes
Patch: http://cvs.winehq.com/patch.py?root=/home/winehq/opt/cvs-commit&id=8576
Old revision New revision Changes Path 1.169 1.170 +3 -0 wine/server/trace.c 1.72 1.73 +3 -0 wine/server/protocol.def 1.68 1.69 +11 -4 wine/server/file.c 1.126 1.127 +18 -17 wine/misc/registry.c 1.72 1.73 +4 -1 wine/include/wine/server_protocol.h 1.41 1.42 +4 -0 wine/include/winternl.h 1.183 1.184 +5 -497 wine/files/file.c 1.119 1.120 +4 -4 wine/dlls/ntdll/ntdll.spec 1.23 1.24 +248 -19 wine/dlls/ntdll/file.c 1.1 1.2 +5 -0 wine/dlls/kernel/kernel_private.h 1.70 1.71 +2 -0 wine/dlls/kernel/Makefile.in Added 1.1 +0 -0 wine/dlls/kernel/file16.c Added 1.1 +0 -0 wine/dlls/kernel/file.c