Created an empty oleacc DLL.
This commit is contained in:
parent
a86a289420
commit
5caccaf621
|
@ -1449,6 +1449,7 @@ dlls/ntdll/Makefile
|
||||||
dlls/ntdll/tests/Makefile
|
dlls/ntdll/tests/Makefile
|
||||||
dlls/odbc32/Makefile
|
dlls/odbc32/Makefile
|
||||||
dlls/ole32/Makefile
|
dlls/ole32/Makefile
|
||||||
|
dlls/oleacc/Makefile
|
||||||
dlls/oleaut32/Makefile
|
dlls/oleaut32/Makefile
|
||||||
dlls/oleaut32/tests/Makefile
|
dlls/oleaut32/tests/Makefile
|
||||||
dlls/olecli/Makefile
|
dlls/olecli/Makefile
|
||||||
|
|
|
@ -70,6 +70,7 @@ BASEDIRS = \
|
||||||
ntdll \
|
ntdll \
|
||||||
odbc32 \
|
odbc32 \
|
||||||
ole32 \
|
ole32 \
|
||||||
|
oleacc \
|
||||||
oleaut32 \
|
oleaut32 \
|
||||||
olecli \
|
olecli \
|
||||||
oledlg \
|
oledlg \
|
||||||
|
@ -256,6 +257,7 @@ SYMLINKS = \
|
||||||
ntdll.dll$(DLLEXT) \
|
ntdll.dll$(DLLEXT) \
|
||||||
odbc32.dll$(DLLEXT) \
|
odbc32.dll$(DLLEXT) \
|
||||||
ole32.dll$(DLLEXT) \
|
ole32.dll$(DLLEXT) \
|
||||||
|
oleacc.dll$(DLLEXT) \
|
||||||
oleaut32.dll$(DLLEXT) \
|
oleaut32.dll$(DLLEXT) \
|
||||||
olecli32.dll$(DLLEXT) \
|
olecli32.dll$(DLLEXT) \
|
||||||
oledlg.dll$(DLLEXT) \
|
oledlg.dll$(DLLEXT) \
|
||||||
|
@ -512,6 +514,9 @@ ole32.dll$(DLLEXT) compobj.dll$(DLLEXT) ole2.dll$(DLLEXT) \
|
||||||
ole2thk.dll$(DLLEXT) storage.dll$(DLLEXT): ole32/ole32.dll$(DLLEXT)
|
ole2thk.dll$(DLLEXT) storage.dll$(DLLEXT): ole32/ole32.dll$(DLLEXT)
|
||||||
$(RM) $@ && $(LN_S) ole32/ole32.dll$(DLLEXT) $@
|
$(RM) $@ && $(LN_S) ole32/ole32.dll$(DLLEXT) $@
|
||||||
|
|
||||||
|
oleacc.dll$(DLLEXT): oleacc/oleacc.dll$(DLLEXT)
|
||||||
|
$(RM) $@ && $(LN_S) oleacc/oleacc.dll$(DLLEXT) $@
|
||||||
|
|
||||||
oleaut32.dll$(DLLEXT) ole2disp.dll$(DLLEXT) typelib.dll$(DLLEXT): oleaut32/oleaut32.dll$(DLLEXT)
|
oleaut32.dll$(DLLEXT) ole2disp.dll$(DLLEXT) typelib.dll$(DLLEXT): oleaut32/oleaut32.dll$(DLLEXT)
|
||||||
$(RM) $@ && $(LN_S) oleaut32/oleaut32.dll$(DLLEXT) $@
|
$(RM) $@ && $(LN_S) oleaut32/oleaut32.dll$(DLLEXT) $@
|
||||||
|
|
||||||
|
@ -715,6 +720,7 @@ IMPORT_LIBS = \
|
||||||
libntdll \
|
libntdll \
|
||||||
libodbc32 \
|
libodbc32 \
|
||||||
libole32 \
|
libole32 \
|
||||||
|
liboleacc \
|
||||||
liboleaut32 \
|
liboleaut32 \
|
||||||
libolecli32 \
|
libolecli32 \
|
||||||
liboledlg \
|
liboledlg \
|
||||||
|
@ -1027,6 +1033,11 @@ libole32.def: ole32/ole32.spec.def
|
||||||
libole32.a: ole32/ole32.spec.def
|
libole32.a: ole32/ole32.spec.def
|
||||||
$(DLLTOOL) -k -l $@ -d ole32/ole32.spec.def
|
$(DLLTOOL) -k -l $@ -d ole32/ole32.spec.def
|
||||||
|
|
||||||
|
liboleacc.def: oleacc/oleacc.spec.def
|
||||||
|
$(RM) $@ && $(LN_S) oleacc/oleacc.spec.def $@
|
||||||
|
liboleacc.a: oleacc/oleacc.spec.def
|
||||||
|
$(DLLTOOL) -k -l $@ -d oleacc/oleacc.spec.def
|
||||||
|
|
||||||
liboleaut32.def: oleaut32/oleaut32.spec.def
|
liboleaut32.def: oleaut32/oleaut32.spec.def
|
||||||
$(RM) $@ && $(LN_S) oleaut32/oleaut32.spec.def $@
|
$(RM) $@ && $(LN_S) oleaut32/oleaut32.spec.def $@
|
||||||
liboleaut32.a: oleaut32/oleaut32.spec.def
|
liboleaut32.a: oleaut32/oleaut32.spec.def
|
||||||
|
@ -1286,6 +1297,7 @@ netapi32/netapi32.spec.def: $(WINEBUILD)
|
||||||
ntdll/ntdll.spec.def: $(WINEBUILD)
|
ntdll/ntdll.spec.def: $(WINEBUILD)
|
||||||
odbc32/odbc32.spec.def: $(WINEBUILD)
|
odbc32/odbc32.spec.def: $(WINEBUILD)
|
||||||
ole32/ole32.spec.def: $(WINEBUILD)
|
ole32/ole32.spec.def: $(WINEBUILD)
|
||||||
|
oleacc/oleacc.spec.def: $(WINEBUILD)
|
||||||
oleaut32/oleaut32.spec.def: $(WINEBUILD)
|
oleaut32/oleaut32.spec.def: $(WINEBUILD)
|
||||||
olecli/olecli32.spec.def: $(WINEBUILD)
|
olecli/olecli32.spec.def: $(WINEBUILD)
|
||||||
oledlg/oledlg.spec.def: $(WINEBUILD)
|
oledlg/oledlg.spec.def: $(WINEBUILD)
|
||||||
|
@ -1399,6 +1411,7 @@ netapi32/netapi32.dll$(DLLEXT): netapi32
|
||||||
ntdll/ntdll.dll$(DLLEXT): ntdll
|
ntdll/ntdll.dll$(DLLEXT): ntdll
|
||||||
odbc32/odbc32.dll$(DLLEXT): odbc32
|
odbc32/odbc32.dll$(DLLEXT): odbc32
|
||||||
ole32/ole32.dll$(DLLEXT): ole32
|
ole32/ole32.dll$(DLLEXT): ole32
|
||||||
|
oleacc/oleacc.dll$(DLLEXT): oleacc
|
||||||
oleaut32/oleaut32.dll$(DLLEXT): oleaut32
|
oleaut32/oleaut32.dll$(DLLEXT): oleaut32
|
||||||
olecli/olecli32.dll$(DLLEXT): olecli
|
olecli/olecli32.dll$(DLLEXT): olecli
|
||||||
oledlg/oledlg.dll$(DLLEXT): oledlg
|
oledlg/oledlg.dll$(DLLEXT): oledlg
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
Makefile
|
||||||
|
oleacc.dll.dbg.c
|
||||||
|
oleacc.spec.c
|
||||||
|
oleacc.spec.def
|
|
@ -0,0 +1,15 @@
|
||||||
|
TOPSRCDIR = @top_srcdir@
|
||||||
|
TOPOBJDIR = ../..
|
||||||
|
SRCDIR = @srcdir@
|
||||||
|
VPATH = @srcdir@
|
||||||
|
MODULE = oleacc.dll
|
||||||
|
|
||||||
|
LDDLLFLAGS = @LDDLLFLAGS@
|
||||||
|
SYMBOLFILE = $(MODULE).tmp.o
|
||||||
|
|
||||||
|
C_SRCS = \
|
||||||
|
main.c
|
||||||
|
|
||||||
|
@MAKE_DLL_RULES@
|
||||||
|
|
||||||
|
### Dependencies:
|
|
@ -0,0 +1 @@
|
||||||
|
/* nothing yet !!!! */
|
|
@ -0,0 +1,20 @@
|
||||||
|
@ stub AccessibleChildren
|
||||||
|
@ stub AccessibleObjectFromEvent
|
||||||
|
@ stub AccessibleObjectFromPoint
|
||||||
|
@ stub AccessibleObjectFromWindow
|
||||||
|
@ stub CreateStdAccessibleObject
|
||||||
|
@ stub CreateStdAccessibleProxyA
|
||||||
|
@ stub CreateStdAccessibleProxyW
|
||||||
|
@ stub DllRegisterServer
|
||||||
|
@ stub DllUnregisterServer
|
||||||
|
@ stub GetOleaccVersionInfo
|
||||||
|
@ stub GetRoleTextA
|
||||||
|
@ stub GetRoleTextW
|
||||||
|
@ stub GetStateTextA
|
||||||
|
@ stub GetStateTextW
|
||||||
|
@ stub IID_IAccessible
|
||||||
|
@ stub IID_IAccessibleHandler
|
||||||
|
@ stub LIBID_Accessibility
|
||||||
|
@ stub LresultFromObject
|
||||||
|
@ stub ObjectFromLresult
|
||||||
|
@ stub WindowFromAccessibleObject
|
Loading…
Reference in New Issue