wine/ include/msvcrt/sys/utime.h include/msvcr ...

Alexandre Julliard julliard at winehq.org
Thu Jun 24 20:19:16 CDT 2004


ChangeSet ID:	12713
CVSROOT:	/opt/cvs-commit
Module name:	wine
Changes by:	julliard at wine.codeweavers.com	2004/06/24 20:19:16

Modified files:
	include/msvcrt/sys: utime.h types.h timeb.h stat.h 
	include/msvcrt : wctype.h wchar.h time.h string.h stdlib.h 
	                 stdio.h stddef.h setjmp.h search.h process.h 
	                 mbstring.h mbctype.h math.h malloc.h locale.h 
	                 io.h float.h fcntl.h errno.h eh.h dos.h 
	                 direct.h ctype.h conio.h 
	include        : winsock.h 
	dlls/msvcrt/tests: Makefile.in .cvsignore 
	dlls/msvcrt    : wcs.c time.c thread.c string.c scanf.c 
	                 process.c msvcrt.spec msvcrt.h misc.c mbcs.c 
	                 math.c main.c locale.c heap.c file.c exit.c 
	                 except.c errno.c environ.c dir.c data.c ctype.c 
	                 cppexcept.c cpp.c console.c Makefile.in 
Added files:
	dlls/msvcrt/tests: headers.c 

Log message:
	Dimitrie O. Paun <dpaun at rogers.com>
	Split the MSVCRT implementation headers from the public headers.
	Fix some naming conventions aberrations.
	Add tests to ensure consistency between the two sets of symbols.

Patch: http://cvs.winehq.org/patch.py?id=12713

Old revision  New revision  Changes     Path
 1.6           1.7           +12 -22     wine/include/msvcrt/sys/utime.h
 1.9           1.10          +14 -24     wine/include/msvcrt/sys/types.h
 1.6           1.7           +7 -17      wine/include/msvcrt/sys/timeb.h
 1.12          1.13          +52 -62     wine/include/msvcrt/sys/stat.h
 1.7           1.8           +28 -42     wine/include/msvcrt/wctype.h
 1.8           1.9           +265 -279   wine/include/msvcrt/wchar.h
 1.7           1.8           +36 -44     wine/include/msvcrt/time.h
 1.9           1.10          +73 -83     wine/include/msvcrt/string.h
 1.16          1.17          +73 -94     wine/include/msvcrt/stdlib.h
 1.19          1.20          +128 -176   wine/include/msvcrt/stdio.h
 1.7           1.8           +8 -16      wine/include/msvcrt/stddef.h
 1.5           1.6           +2 -19      wine/include/msvcrt/setjmp.h
 1.7           1.8           +5 -15      wine/include/msvcrt/search.h
 1.10          1.11          +30 -41     wine/include/msvcrt/process.h
 1.4           1.5           +30 -38     wine/include/msvcrt/mbstring.h
 1.4           1.5           +3 -3       wine/include/msvcrt/mbctype.h
 1.3           1.4           +10 -18     wine/include/msvcrt/math.h
 1.7           1.8           +15 -25     wine/include/msvcrt/malloc.h
 1.5           1.6           +13 -32     wine/include/msvcrt/locale.h
 1.7           1.8           +60 -71     wine/include/msvcrt/io.h
 1.2           1.3           +0 -8       wine/include/msvcrt/float.h
 1.3           1.4           +0 -2       wine/include/msvcrt/fcntl.h
 1.5           1.6           +2 -59      wine/include/msvcrt/errno.h
 1.7           1.8           +6 -14      wine/include/msvcrt/eh.h
 1.5           1.6           +6 -8       wine/include/msvcrt/dos.h
 1.6           1.7           +18 -28     wine/include/msvcrt/direct.h
 1.6           1.7           +49 -65     wine/include/msvcrt/ctype.h
 1.5           1.6           +0 -3       wine/include/msvcrt/conio.h
 1.65          1.66          +1 -1       wine/include/winsock.h
 1.6           1.7           +2 -1       wine/dlls/msvcrt/tests/Makefile.in
 1.7           1.8           +1 -0       wine/dlls/msvcrt/tests/.cvsignore
 1.17          1.18          +0 -6       wine/dlls/msvcrt/wcs.c
 1.14          1.15          +15 -19     wine/dlls/msvcrt/time.c
 1.12          1.13          +8 -12      wine/dlls/msvcrt/thread.c
 1.9           1.10          +0 -3       wine/dlls/msvcrt/string.c
 1.6           1.7           +0 -4       wine/dlls/msvcrt/scanf.c
 1.23          1.24          +16 -23     wine/dlls/msvcrt/process.c
 1.91          1.92          +5 -5       wine/dlls/msvcrt/msvcrt.spec
 1.25          1.26          +489 -27    wine/dlls/msvcrt/msvcrt.h
 1.11          1.12          +0 -2       wine/dlls/msvcrt/misc.c
 1.27          1.28          +5 -12      wine/dlls/msvcrt/mbcs.c
 1.23          1.24          +58 -62     wine/dlls/msvcrt/math.c
 1.17          1.18          +14 -21     wine/dlls/msvcrt/main.c
 1.22          1.23          +6 -7       wine/dlls/msvcrt/locale.c
 1.14          1.15          +20 -25     wine/dlls/msvcrt/heap.c
 1.68          1.69          +111 -123   wine/dlls/msvcrt/file.c
 1.12          1.13          +2 -6       wine/dlls/msvcrt/exit.c
 1.29          1.30          +4 -8       wine/dlls/msvcrt/except.c
 1.12          1.13          +4 -11      wine/dlls/msvcrt/errno.c
 1.11          1.12          +8 -12      wine/dlls/msvcrt/environ.c
 1.28          1.29          +17 -25     wine/dlls/msvcrt/dir.c
 1.23          1.24          +11 -16     wine/dlls/msvcrt/data.c
 1.7           1.8           +21 -24     wine/dlls/msvcrt/ctype.c
 1.9           1.10          +1 -1       wine/dlls/msvcrt/cppexcept.c
 1.17          1.18          +14 -17     wine/dlls/msvcrt/cpp.c
 1.11          1.12          +1 -5       wine/dlls/msvcrt/console.c
 1.15          1.16          +1 -1       wine/dlls/msvcrt/Makefile.in
 Added         1.1           +0 -0       wine/dlls/msvcrt/tests/headers.c




More information about the wine-cvs mailing list