creating oleacc DLL

Eric Pouech pouech-eric at wanadoo.fr
Sat Jun 21 07:28:14 CDT 2003


just stubs
A+
-- 
Eric Pouech
-------------- next part --------------
Name:          oleacc
ChangeLog:     created an empty oleacc DLL
License:       X11
GenDate:       2003/06/21 12:16:24 UTC
ModifiedFiles: configure.ac dlls/Makefile.in
AddedFiles:    dlls/oleacc/Makefile.in dlls/oleacc/.cvsignore dlls/oleacc/main.c dlls/oleacc/oleacc.spec
===================================================================
RCS file: /home/cvs/cvsroot/wine/wine/configure.ac,v
retrieving revision 1.162
diff -u -u -r1.162 configure.ac
--- configure.ac	20 Jun 2003 23:26:56 -0000	1.162
+++ configure.ac	21 Jun 2003 06:03:25 -0000
@@ -1449,6 +1450,7 @@
 dlls/ntdll/tests/Makefile
 dlls/odbc32/Makefile
 dlls/ole32/Makefile
+dlls/oleacc/Makefile
 dlls/oleaut32/Makefile
 dlls/oleaut32/tests/Makefile
 dlls/olecli/Makefile
Index: dlls/Makefile.in
===================================================================
RCS file: /home/cvs/cvsroot/wine/wine/dlls/Makefile.in,v
retrieving revision 1.176
diff -u -u -r1.176 Makefile.in
--- dlls/Makefile.in	15 May 2003 23:25:50 -0000	1.176
+++ dlls/Makefile.in	13 Jun 2003 19:10:42 -0000
@@ -70,6 +71,7 @@
 	ntdll \
 	odbc32 \
 	ole32 \
+	oleacc \
 	oleaut32 \
 	olecli \
 	oledlg \
@@ -256,6 +259,7 @@
 	ntdll.dll$(DLLEXT) \
 	odbc32.dll$(DLLEXT) \
 	ole32.dll$(DLLEXT) \
+	oleacc.dll$(DLLEXT) \
 	oleaut32.dll$(DLLEXT) \
 	olecli32.dll$(DLLEXT) \
 	oledlg.dll$(DLLEXT) \
@@ -512,6 +519,9 @@
   ole2thk.dll$(DLLEXT) storage.dll$(DLLEXT): 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)
 	$(RM) $@ && $(LN_S) oleaut32/oleaut32.dll$(DLLEXT) $@
 
@@ -715,6 +726,7 @@
 	libntdll \
 	libodbc32 \
 	libole32 \
+	liboleacc \
 	liboleaut32 \
 	libolecli32 \
 	liboledlg \
@@ -1027,6 +1044,11 @@
 libole32.a: 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
 	$(RM) $@ && $(LN_S) oleaut32/oleaut32.spec.def $@
 liboleaut32.a: oleaut32/oleaut32.spec.def
@@ -1286,6 +1309,7 @@
 ntdll/ntdll.spec.def: $(WINEBUILD)
 odbc32/odbc32.spec.def: $(WINEBUILD)
 ole32/ole32.spec.def: $(WINEBUILD)
+oleacc/oleacc.spec.def: $(WINEBUILD)
 oleaut32/oleaut32.spec.def: $(WINEBUILD)
 olecli/olecli32.spec.def: $(WINEBUILD)
 oledlg/oledlg.spec.def: $(WINEBUILD)
@@ -1399,6 +1424,7 @@
 ntdll/ntdll.dll$(DLLEXT): ntdll
 odbc32/odbc32.dll$(DLLEXT): odbc32
 ole32/ole32.dll$(DLLEXT): ole32
+oleacc/oleacc.dll$(DLLEXT): oleacc
 oleaut32/oleaut32.dll$(DLLEXT): oleaut32
 olecli/olecli32.dll$(DLLEXT): olecli
 oledlg/oledlg.dll$(DLLEXT): oledlg
--- /dev/null	1970-01-01 01:00:00.000000000 +0100
+++ dlls/oleacc/Makefile.in	2003-06-13 19:16:27.000000000 +0200
@@ -0,0 +1,18 @@
+EXTRADEFS = 
+TOPSRCDIR = @top_srcdir@
+TOPOBJDIR = ../..
+SRCDIR    = @srcdir@
+VPATH     = @srcdir@
+MODULE    = oleacc.dll
+IMPORTS   = 
+ALTNAMES  =
+
+LDDLLFLAGS = @LDDLLFLAGS@
+SYMBOLFILE = $(MODULE).tmp.o
+
+C_SRCS = \
+	main.c
+
+ at MAKE_DLL_RULES@
+
+### Dependencies:
--- /dev/null	1970-01-01 01:00:00.000000000 +0100
+++ dlls/oleacc/.cvsignore	2003-06-13 20:51:32.000000000 +0200
@@ -0,0 +1,4 @@
+Makefile
+oleacc.spec.c
+oleacc.dll.dbg.c
+oleacc.spec.def
--- /dev/null	1970-01-01 01:00:00.000000000 +0100
+++ dlls/oleacc/main.c	2003-06-13 20:55:42.000000000 +0200
@@ -0,0 +1 @@
+/* nothing yet !!!! */
--- /dev/null	1970-01-01 01:00:00.000000000 +0100
+++ dlls/oleacc/oleacc.spec	2003-06-13 19:20:21.000000000 +0200
@@ -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


More information about the wine-patches mailing list