mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-05 18:01:34 +00:00
c8362ec3b8
I had to duplicate idl unfortunately, because typelib in riched20 is not compatible with interfaces from tom.idl - method names are different, while vtables are identical.
30 lines
425 B
Makefile
30 lines
425 B
Makefile
MODULE = riched20.dll
|
|
IMPORTLIB = riched20
|
|
IMPORTS = uuid usp10 ole32 oleaut32 imm32 user32 gdi32
|
|
EXTRADLLFLAGS = -Wl,--image-base,0x7ac00000
|
|
|
|
C_SRCS = \
|
|
caret.c \
|
|
clipboard.c \
|
|
context.c \
|
|
editor.c \
|
|
list.c \
|
|
paint.c \
|
|
para.c \
|
|
reader.c \
|
|
richole.c \
|
|
row.c \
|
|
run.c \
|
|
string.c \
|
|
style.c \
|
|
table.c \
|
|
txthost.c \
|
|
txtsrv.c \
|
|
undo.c \
|
|
wrap.c \
|
|
writer.c
|
|
|
|
RC_SRCS = version.rc
|
|
|
|
IDL_SRCS = \
|
|
riched_tom.idl
|