mirror of
https://github.com/reactos/wine.git
synced 2024-11-29 14:40:56 +00:00
304d9a4737
Remove relays for win16drv from CallBack table, instead use build to generate them directly in graphics/win16drv/prtdrv.c. If Printer AbortProc is 16bit then allocate thunk and store that as a 32bit proc in DC. Setting of abortprocs now done in the correct place (i.e. not in the driver).
25 lines
307 B
Makefile
25 lines
307 B
Makefile
DEFS = @DLLFLAGS@ -D__WINE__
|
|
TOPSRCDIR = @top_srcdir@
|
|
TOPOBJDIR = ../..
|
|
SRCDIR = @srcdir@
|
|
VPATH = @srcdir@
|
|
MODULE = win16drv
|
|
|
|
C_SRCS = \
|
|
brush.c \
|
|
font.c \
|
|
graphics.c \
|
|
init.c \
|
|
objects.c \
|
|
pen.c \
|
|
prtdrv.c \
|
|
text.c
|
|
|
|
GLUE = prtdrv.c
|
|
|
|
all: $(MODULE).o
|
|
|
|
@MAKE_RULES@
|
|
|
|
### Dependencies:
|