wine/ console/generic.c console/interface.c co ...

Alexandre Julliard julliard at wine.codeweavers.com
Sat Mar 9 17:50:39 CST 2002


ChangeSet ID:	101571783954367048882796
CVSROOT:	/opt/cvs-commit
Module name:	wine
Changes by:	julliard at wine.codeweavers.com	02/03/09 17:50:39

Modified files:
	console        : generic.c interface.c ncurses.c tty.c xterm.c 
	controls       : button.c combo.c desktop.c edit.c icontitle.c 
	                 listbox.c menu.c scroll.c static.c uitools.c 
	debugger       : break.c dbg.y debug.l debugger.h display.c 
	                 expr.c expr.h ext_debugger.c hash.c info.c 
	                 intvar.h memory.c module.c msc.c registers.c 
	                 source.c stabs.c stack.c types.c winedbg.c 
	files          : change.c directory.c dos_fs.c drive.c file.c 
	                 profile.c tape.c 
	graphics       : bitblt.c dispdib.c env.c escape.c fontengine.c 
	                 mapping.c painting.c path.c 
	graphics/enhmetafiledrv: dc.c graphics.c init.c mapping.c 
	                         objects.c 
	graphics/metafiledrv: bitblt.c dc.c graphics.c init.c mapping.c 
	                      metafiledrv.h objects.c text.c 
	graphics/win16drv: brush.c font.c graphics.c init.c objects.c 
	                   pen.c prtdrv.c text.c 
	graphics/x11drv: bitblt.c bitmap.c brush.c clipping.c codepage.c 
	                 dib.c graphics.c init.c objects.c opengl.c 
	                 palette.c pen.c text.c xfont.c 
	if1632         : builtin.c relay.c snoop.c 

Log message:
	Added LGPL standard comment, and copyright notices where necessary.
	Global replacement of debugtools.h by wine/debug.h.

Patch: http://cvs.winehq.com/patch.py?id=101571783954367048882796

Revision  Changes    Path
 1.14     +24 -9     wine/console/generic.c
 1.15     +23 -7     wine/console/interface.c
 1.18     +19 -4     wine/console/ncurses.c
 1.8      +21 -7     wine/console/tty.c
 1.19     +26 -11    wine/console/xterm.c
 1.57     +14 -0     wine/controls/button.c
 1.81     +16 -2     wine/controls/combo.c
 1.25     +14 -0     wine/controls/desktop.c
 1.90     +18 -4     wine/controls/edit.c
 1.24     +14 -0     wine/controls/icontitle.c
 1.81     +17 -3     wine/controls/listbox.c
 1.137    +17 -3     wine/controls/menu.c
 1.52     +16 -2     wine/controls/scroll.c
 1.34     +15 -2     wine/controls/static.c
 1.25     +16 -2     wine/controls/uitools.c
 1.30     +14 -0     wine/debugger/break.c
 1.51     +14 -0     wine/debugger/dbg.y
 1.25     +14 -0     wine/debugger/debug.l
 1.30     +14 -0     wine/debugger/debugger.h
 1.8      +13 -0     wine/debugger/display.c
 1.25     +13 -0     wine/debugger/expr.c
 1.2      +18 -0     wine/debugger/expr.h
 1.3      +16 -5     wine/debugger/ext_debugger.c
 1.28     +14 -0     wine/debugger/hash.c
 1.23     +14 -0     wine/debugger/info.c
 1.8      +16 -2     wine/debugger/intvar.h
 1.26     +14 -0     wine/debugger/memory.c
 1.15     +14 -0     wine/debugger/module.c
 1.46     +14 -0     wine/debugger/msc.c
 1.17     +14 -0     wine/debugger/registers.c
 1.19     +13 -0     wine/debugger/source.c
 1.44     +14 -0     wine/debugger/stabs.c
 1.27     +14 -0     wine/debugger/stack.c
 1.28     +15 -1     wine/debugger/types.c
 1.49     +15 -1     wine/debugger/winedbg.c
 1.21     +16 -2     wine/files/change.c
 1.45     +17 -3     wine/files/directory.c
 1.102    +17 -3     wine/files/dos_fs.c
 1.67     +16 -3     wine/files/drive.c
 1.133    +16 -2     wine/files/file.c
 1.66     +16 -2     wine/files/profile.c
 1.6      +16 -2     wine/files/tape.c
 1.15     +16 -2     wine/graphics/bitblt.c
 1.14     +15 -2     wine/graphics/dispdib.c
 1.11     +16 -2     wine/graphics/env.c
 1.28     +16 -2     wine/graphics/escape.c
 1.11     +16 -3     wine/graphics/fontengine.c
 1.14     +16 -2     wine/graphics/mapping.c
 1.47     +16 -2     wine/graphics/painting.c
 1.25     +16 -2     wine/graphics/path.c
 1.4      +16 -2     wine/graphics/enhmetafiledrv/dc.c
 1.12     +16 -2     wine/graphics/enhmetafiledrv/graphics.c
 1.29     +16 -2     wine/graphics/enhmetafiledrv/init.c
 1.2      +14 -0     wine/graphics/enhmetafiledrv/mapping.c
 1.16     +16 -2     wine/graphics/enhmetafiledrv/objects.c
 1.12     +16 -2     wine/graphics/metafiledrv/bitblt.c
 1.3      +13 -0     wine/graphics/metafiledrv/dc.c
 1.16     +16 -2     wine/graphics/metafiledrv/graphics.c
 1.38     +16 -2     wine/graphics/metafiledrv/init.c
 1.5      +14 -0     wine/graphics/metafiledrv/mapping.c
 1.3      +16 -0     wine/graphics/metafiledrv/metafiledrv.h
 1.21     +16 -2     wine/graphics/metafiledrv/objects.c
 1.12     +15 -2     wine/graphics/metafiledrv/text.c
 1.9      +16 -2     wine/graphics/win16drv/brush.c
 1.25     +16 -2     wine/graphics/win16drv/font.c
 1.10     +16 -2     wine/graphics/win16drv/graphics.c
 1.41     +16 -2     wine/graphics/win16drv/init.c
 1.11     +16 -2     wine/graphics/win16drv/objects.c
 1.10     +16 -2     wine/graphics/win16drv/pen.c
 1.26     +16 -2     wine/graphics/win16drv/prtdrv.c
 1.11     +16 -2     wine/graphics/win16drv/text.c
 1.38     +16 -2     wine/graphics/x11drv/bitblt.c
 1.35     +16 -2     wine/graphics/x11drv/bitmap.c
 1.22     +16 -2     wine/graphics/x11drv/brush.c
 1.19     +16 -2     wine/graphics/x11drv/clipping.c
 1.13     +16 -2     wine/graphics/x11drv/codepage.c
 1.88     +17 -3     wine/graphics/x11drv/dib.c
 1.42     +16 -2     wine/graphics/x11drv/graphics.c
 1.44     +16 -2     wine/graphics/x11drv/init.c
 1.15     +16 -2     wine/graphics/x11drv/objects.c
 1.5      +15 -2     wine/graphics/x11drv/opengl.c
 1.29     +15 -2     wine/graphics/x11drv/palette.c
 1.13     +16 -2     wine/graphics/x11drv/pen.c
 1.29     +16 -2     wine/graphics/x11drv/text.c
 1.92     +16 -2     wine/graphics/x11drv/xfont.c
 1.49     +16 -2     wine/if1632/builtin.c
 1.47     +16 -2     wine/if1632/relay.c
 1.31     +16 -2     wine/if1632/snoop.c




More information about the wine-cvs mailing list