Moved DDEML into dlls/user.
This commit is contained in:
parent
a01004d828
commit
81eafedaf1
|
@ -73,6 +73,7 @@ EXTRADLLNAMES = \
|
||||||
avifile \
|
avifile \
|
||||||
commdlg \
|
commdlg \
|
||||||
compobj \
|
compobj \
|
||||||
|
ddeml \
|
||||||
dplay \
|
dplay \
|
||||||
gdi \
|
gdi \
|
||||||
keyboard \
|
keyboard \
|
||||||
|
@ -284,7 +285,7 @@ libttydrv.@LIBEXT@: ttydrv/libttydrv.@LIBEXT@
|
||||||
liburlmon.@LIBEXT@: urlmon/liburlmon.@LIBEXT@
|
liburlmon.@LIBEXT@: urlmon/liburlmon.@LIBEXT@
|
||||||
$(RM) $@ && $(LN_S) urlmon/liburlmon.@LIBEXT@ $@
|
$(RM) $@ && $(LN_S) urlmon/liburlmon.@LIBEXT@ $@
|
||||||
|
|
||||||
libuser32.@LIBEXT@ libuser.@LIBEXT@ libkeyboard.@LIBEXT@: user/libuser32.@LIBEXT@
|
libuser32.@LIBEXT@ libuser.@LIBEXT@ libkeyboard.@LIBEXT@ libddeml.@LIBEXT@: user/libuser32.@LIBEXT@
|
||||||
$(RM) $@ && $(LN_S) user/libuser32.@LIBEXT@ $@
|
$(RM) $@ && $(LN_S) user/libuser32.@LIBEXT@ $@
|
||||||
|
|
||||||
libversion.@LIBEXT@ libver.@LIBEXT@: version/libversion.@LIBEXT@
|
libversion.@LIBEXT@ libver.@LIBEXT@: version/libversion.@LIBEXT@
|
||||||
|
|
|
@ -4,11 +4,12 @@ SRCDIR = @srcdir@
|
||||||
VPATH = @srcdir@
|
VPATH = @srcdir@
|
||||||
MODULE = user32
|
MODULE = user32
|
||||||
SOVERSION = 1.0
|
SOVERSION = 1.0
|
||||||
ALTNAMES = user keyboard
|
ALTNAMES = user keyboard ddeml
|
||||||
|
|
||||||
SPEC_SRCS = user32.spec user.spec keyboard.spec
|
SPEC_SRCS = user32.spec user.spec keyboard.spec ddeml.spec
|
||||||
|
|
||||||
C_SRCS = \
|
C_SRCS = \
|
||||||
|
ddeml.c \
|
||||||
user_main.c \
|
user_main.c \
|
||||||
thunk.c
|
thunk.c
|
||||||
|
|
||||||
|
|
|
@ -1,11 +1,9 @@
|
||||||
Makefile
|
Makefile
|
||||||
call16.s
|
call16.s
|
||||||
comm.spec.c
|
comm.spec.c
|
||||||
ddeml.spec.c
|
|
||||||
dispdib.spec.c
|
dispdib.spec.c
|
||||||
kernel.spec.c
|
kernel.spec.c
|
||||||
ole2conv.spec.c
|
ole2conv.spec.c
|
||||||
ole2nls.spec.c
|
|
||||||
ole2prox.spec.c
|
ole2prox.spec.c
|
||||||
ole2thk.spec.c
|
ole2thk.spec.c
|
||||||
system.spec.c
|
system.spec.c
|
||||||
|
|
|
@ -7,7 +7,6 @@ MODULE = if1632
|
||||||
|
|
||||||
SPEC_SRCS = \
|
SPEC_SRCS = \
|
||||||
comm.spec \
|
comm.spec \
|
||||||
ddeml.spec \
|
|
||||||
dispdib.spec \
|
dispdib.spec \
|
||||||
kernel.spec \
|
kernel.spec \
|
||||||
ole2conv.spec \
|
ole2conv.spec \
|
||||||
|
|
|
@ -1,15 +0,0 @@
|
||||||
name ole2nls
|
|
||||||
type win16
|
|
||||||
|
|
||||||
1 pascal GetUserDefaultLCID() GetUserDefaultLCID
|
|
||||||
2 pascal GetSystemDefaultLCID() GetSystemDefaultLCID
|
|
||||||
3 pascal GetUserDefaultLangID() GetUserDefaultLangID
|
|
||||||
4 pascal GetSystemDefaultLangID() GetSystemDefaultLangID
|
|
||||||
5 pascal GetLocaleInfoA(long long ptr word) GetLocaleInfo16
|
|
||||||
6 stub LCMAPSTRINGA
|
|
||||||
7 pascal16 GetStringTypeA(long long str word ptr) GetStringType16
|
|
||||||
8 pascal16 CompareStringA(long long str word str word) CompareString16
|
|
||||||
9 pascal16 RegisterNLSInfoChanged(ptr) RegisterNLSInfoChanged16
|
|
||||||
#10 stub WEP
|
|
||||||
11 stub LIBMAIN
|
|
||||||
12 stub NOTIFYWINDOWPROC
|
|
|
@ -11,7 +11,6 @@ C_SRCS = \
|
||||||
cdrom.c \
|
cdrom.c \
|
||||||
comm.c \
|
comm.c \
|
||||||
cpu.c \
|
cpu.c \
|
||||||
ddeml.c \
|
|
||||||
debugstr.c \
|
debugstr.c \
|
||||||
error.c \
|
error.c \
|
||||||
lstr.c \
|
lstr.c \
|
||||||
|
|
Loading…
Reference in New Issue