Jacek Caban : atl100: Addeed stub DLL.

Alexandre Julliard julliard at winehq.org
Wed Nov 21 14:45:15 CST 2012


Module: wine
Branch: master
Commit: 565d9f6dc8ba1b571d10de464dcfd0813b992323
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=565d9f6dc8ba1b571d10de464dcfd0813b992323

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Wed Nov 21 11:09:45 2012 +0100

atl100: Addeed stub DLL.

---

 configure               |    1 +
 configure.ac            |    1 +
 dlls/atl100/Makefile.in |    5 ++++
 dlls/atl100/atl.c       |   33 +++++++++++++++++++++++++++++
 dlls/atl100/atl100.spec |   52 +++++++++++++++++++++++++++++++++++++++++++++++
 5 files changed, 92 insertions(+), 0 deletions(-)

diff --git a/configure b/configure
index 2fcdd20..2baf8c8 100755
--- a/configure
+++ b/configure
@@ -15247,6 +15247,7 @@ wine_fn_config_test dlls/apphelp/tests apphelp_test
 wine_fn_config_dll appwiz.cpl enable_appwiz_cpl po
 wine_fn_config_dll atl enable_atl implib
 wine_fn_config_test dlls/atl/tests atl_test
+wine_fn_config_dll atl100 enable_atl100
 wine_fn_config_dll atl80 enable_atl80
 wine_fn_config_dll authz enable_authz
 wine_fn_config_dll avicap32 enable_avicap32 implib
diff --git a/configure.ac b/configure.ac
index a08b995..d003e8a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2513,6 +2513,7 @@ WINE_CONFIG_TEST(dlls/apphelp/tests)
 WINE_CONFIG_DLL(appwiz.cpl,,[po])
 WINE_CONFIG_DLL(atl,,[implib])
 WINE_CONFIG_TEST(dlls/atl/tests)
+WINE_CONFIG_DLL(atl100)
 WINE_CONFIG_DLL(atl80)
 WINE_CONFIG_DLL(authz)
 WINE_CONFIG_DLL(avicap32,,[implib])
diff --git a/dlls/atl100/Makefile.in b/dlls/atl100/Makefile.in
new file mode 100644
index 0000000..9121a10
--- /dev/null
+++ b/dlls/atl100/Makefile.in
@@ -0,0 +1,5 @@
+MODULE = atl100.dll
+
+C_SRCS = atl.c
+
+ at MAKE_DLL_RULES@
diff --git a/dlls/atl100/atl.c b/dlls/atl100/atl.c
new file mode 100644
index 0000000..ff257ce
--- /dev/null
+++ b/dlls/atl100/atl.c
@@ -0,0 +1,33 @@
+/*
+ * Copyright 2012 Stefan Leichter
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+#include <stdarg.h>
+#include "windef.h"
+#include "winbase.h"
+
+#include "wine/debug.h"
+
+WINE_DEFAULT_DEBUG_CHANNEL(atl);
+
+/***********************************************************************
+ *           AtlGetVersion              [atl100.@]
+ */
+DWORD WINAPI AtlGetVersion(void *pReserved)
+{
+   return 0x0a00;
+}
diff --git a/dlls/atl100/atl100.spec b/dlls/atl100/atl100.spec
new file mode 100644
index 0000000..d367615
--- /dev/null
+++ b/dlls/atl100/atl100.spec
@@ -0,0 +1,52 @@
+10 stub AtlAdvise
+11 stub AtlUnadvise
+12 stub AtlFreeMarshalStream
+13 stub AtlMarshalPtrInProc
+14 stub AtlUnmarshalPtr
+15 stub AtlComModuleGetClassObject
+17 stub AtlComModuleRegisterClassObjects
+20 stub AtlComModuleRevokeClassObjects
+22 stub AtlComModuleUnregisterServer
+23 stub AtlUpdateRegistryFromResourceD
+24 stub AtlWaitWithMessageLoop
+25 stub AtlSetErrorInfo
+26 stub AtlCreateTargetDC
+27 stub AtlHiMetricToPixel
+28 stub AtlPixelToHiMetric
+29 stub AtlDevModeW2A
+30 stub AtlComPtrAssign
+31 stub AtlComQIPtrAssign
+32 stub AtlInternalQueryInterface
+34 stdcall AtlGetVersion(ptr)
+35 stub AtlAxDialogBoxW
+36 stub AtlAxDialogBoxA
+37 stub AtlAxCreateDialogW
+38 stub AtlAxCreateDialogA
+39 stub AtlAxCreateControl
+40 stub AtlAxCreateControlEx
+41 stub AtlAxAttachControl
+42 stub AtlAxWinInit
+43 stub AtlWinModuleAddCreateWndData
+44 stub AtlWinModuleExtractCreateWndData
+45 stub AtlWinModuleRegisterWndClassInfoW
+46 stub AtlWinModuleRegisterWndClassInfoA
+47 stub AtlAxGetControl
+48 stub AtlAxGetHost
+49 stub AtlRegisterClassCategoriesHelper
+50 stub AtlIPersistStreamInit_Load
+51 stub AtlIPersistStreamInit_Save
+52 stub AtlIPersistPropertyBag_Load
+53 stub AtlIPersistPropertyBag_Save
+54 stub AtlGetObjectSourceInterface
+56 stub AtlLoadTypeLib
+58 stub AtlModuleAddTermFunc
+59 stub AtlAxCreateControlLic
+60 stub AtlAxCreateControlLicEx
+61 stub AtlCreateRegistrar
+62 stub AtlWinModuleRegisterClassExW
+63 stub AtlWinModuleRegisterClassExA
+64 stub AtlCallTermFunc
+65 stub AtlWinModuleInit
+66 stub AtlWinModuleTerm
+67 stub AtlSetPerUserRegistration
+68 stub AtlGetPerUserRegistration




More information about the wine-cvs mailing list