mirror of
https://github.com/reactos/wine.git
synced 2024-11-26 05:00:30 +00:00
2d93d000a4
Tue May 21 14:06:07 1996 Alexandre Julliard <julliard@lrc.epfl.ch> * [controls/button.c] Made ButtonWndProc a 32-bit window procedure. * [controls/desktop.c] Made DesktopWndProc a 32-bit window procedure. Added handling of WM_SETCURSOR. * [controls/menu.c] Allocate menu items and strings on the 32-bit system heap. Implemented Win32 versions for ChangeMenu, InsertMenu, ModifyMenu, AppendMenu and LoadMenuIndirect. * [controls/widgets.c] Added possibility to have 32-bit built-in classes. * [files/drive.c] Implemented GetLogicalDrive() and GetLogicalDriveStrings(). * [misc/spy.c] [include/spy.h] Added support for spying Win32 messages. * [loader/builtin.c] Fixed bug in -dll option parsing. * [memory/local.c] Added back the change by Huw D. M. Davies to free the block in LocalRealloc() before allocating the new one. * [objects/bitmap.c] [objects/cursoricon.c] [objects/oembitmap.c] Fixed bug in bitmap size that caused memory corruption for 24bpp. * [windows/defwnd.c] Implemented Win32 version of DefWindowProc(). * [windows/dialog.c] Implemented Win32 version of SendDlgItemMessage, Get/SetDlgItemText and Get/SetDlgItemInt. * [windows/mdi.c] Implemented Win32 version of DefFrameProc() and DefMDIChildProc(). Don't make a copy of the OBM bitmaps for every MDI window. * [windows/message.c] Implemented Win32 version of SendMessage(). * [windows/winproc.c] [windows/class.c] [windows/win.c] New scheme for 32-bit window procedures to replace aliases. All 32-bit window procedure get a 16-bit address pointing to a WINDOWPROC structure. Implemented Ansi<->Unicode translation for CallWindowProc(). Added translation of WM_DRAWITEM between Win16 and Win32. * [windows/win.c] [include/callback.h] Added ugly hack to build CREATESTRUCT on the stack when sending WM_NCCREATE. Implemented Win32 version of Get/SetWindowWord/Long and Get/SetWindowText. Fri May 17 10:20:16 1996 Albrecht Kleine <kleine@ak.sax.de> * [controls/button.c] Avoid gray text on gray background in disabled push buttons using a b/w raster and some raster operations (PatBlt,BitBlt). * [objects/text.c] DrawText(): don't draw an underbar anymore if DT_CALCRECT is set.
92 lines
1.8 KiB
Makefile
92 lines
1.8 KiB
Makefile
TOPSRC = @top_srcdir@
|
|
|
|
MODULE = if1632
|
|
|
|
DLLS = \
|
|
advapi32.spec \
|
|
comctl32.spec \
|
|
comdlg32.spec \
|
|
commdlg.spec \
|
|
compobj.spec \
|
|
crtdll.spec \
|
|
ddeml.spec \
|
|
gdi.spec \
|
|
gdi32.spec \
|
|
kernel.spec \
|
|
kernel32.spec \
|
|
keyboard.spec \
|
|
lzexpand.spec \
|
|
mmsystem.spec \
|
|
mouse.spec \
|
|
ntdll.spec \
|
|
ole2.spec \
|
|
ole2conv.spec \
|
|
ole2disp.spec \
|
|
ole2nls.spec \
|
|
ole2prox.spec \
|
|
ole32.spec \
|
|
olecli.spec \
|
|
olesvr.spec \
|
|
shell.spec \
|
|
shell32.spec \
|
|
sound.spec \
|
|
storage.spec \
|
|
stress.spec \
|
|
system.spec \
|
|
toolhelp.spec \
|
|
user.spec \
|
|
user32.spec \
|
|
ver.spec \
|
|
w32sys.spec \
|
|
win87em.spec \
|
|
winsock.spec \
|
|
winspool.spec \
|
|
wprocs.spec \
|
|
wprocs32.spec \
|
|
wsock32.spec
|
|
|
|
SPEC_FILES = $(DLLS:.spec=.S)
|
|
|
|
C_SRCS = \
|
|
dummy.c \
|
|
relay.c
|
|
|
|
ASM_SRCS = \
|
|
$(SPEC_FILES) \
|
|
callfrom16.S \
|
|
callfrom32.S \
|
|
callto16.S \
|
|
callto32.S \
|
|
except.S
|
|
|
|
.SUFFIXES: .spec
|
|
|
|
.spec.S:
|
|
$(BUILD) -spec $< > $*.S
|
|
|
|
all: checkbuild $(MODULE).o
|
|
|
|
@MAKE_RULES@
|
|
|
|
$(SPEC_FILES): $(BUILD)
|
|
|
|
$(BUILD) checkbuild:
|
|
cd $(TOPSRC)/tools; $(SUBMAKE) build
|
|
|
|
callfrom16.S: $(SPEC_FILES)
|
|
$(BUILD) -callfrom16 `cat $(SPEC_FILES) | grep CallFrom16_ | sed 's/.*CallFrom16_\(.*\)/\1/' | sort | uniq` > callfrom16.S
|
|
|
|
callfrom32.S: $(SPEC_FILES)
|
|
$(BUILD) -callfrom32 `cat $(SPEC_FILES) | grep CallFrom32_ | sed 's/.*CallFrom32_\([0-9]*\)/\1/' | sort | uniq` > callfrom32.S
|
|
|
|
callto16.S: $(TOPSRC)/include/callback.h $(BUILD)
|
|
$(BUILD) -callto16 `cat $(TOPSRC)/include/callback.h | grep "extern.*CallTo16_" | sed 's/.*CallTo16_\(.*\)(.*/\1/' | sort | uniq` > callto16.S
|
|
|
|
callto32.S: $(TOPSRC)/include/callback.h $(BUILD)
|
|
$(BUILD) -callto32 `cat $(TOPSRC)/include/callback.h | grep "extern.*CallTo32_" | sed 's/.*CallTo32_\(.*\)(.*/\1/' | sort | uniq` > callto32.S
|
|
|
|
clean::
|
|
rm -f $(SPEC_FILES) callfrom16.S callfrom32.S callto16.S callto32.S
|
|
|
|
### Dependencies:
|