From 50199423fbd0462ca274b801350a27c2073bc7d5 Mon Sep 17 00:00:00 2001 From: Vijay Kiran Kamuju Date: Sun, 22 Jul 2012 03:18:33 +0200 Subject: [PATCH] atl80: Implement AtlGetVersion. --- dlls/atl80/atl80.c | 5 +++++ dlls/atl80/atl80.spec | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/dlls/atl80/atl80.c b/dlls/atl80/atl80.c index ab1a5ab49b0..1c31fe9191a 100644 --- a/dlls/atl80/atl80.c +++ b/dlls/atl80/atl80.c @@ -29,3 +29,8 @@ HRESULT WINAPI AtlCreateRegistrar(IRegistrar** ppReg) FIXME("(%p) stub\n", ppReg); return E_NOTIMPL; } + +DWORD WINAPI AtlGetVersion(void *pReserved) +{ + return 0x0800; +} diff --git a/dlls/atl80/atl80.spec b/dlls/atl80/atl80.spec index 7035991eda5..7f8cfc2c806 100644 --- a/dlls/atl80/atl80.spec +++ b/dlls/atl80/atl80.spec @@ -21,7 +21,7 @@ 30 stdcall AtlComPtrAssign(ptr ptr) atl.AtlComPtrAssign 31 stdcall AtlComQIPtrAssign(ptr ptr ptr) atl.AtlComQIPtrAssign 32 stdcall AtlInternalQueryInterface(ptr ptr ptr ptr) atl.AtlInternalQueryInterface -34 stub AtlGetVersion +34 stdcall AtlGetVersion(ptr) 35 stub AtlAxDialogBoxW 36 stub AtlAxDialogBoxA 37 stdcall AtlAxCreateDialogW(long wstr long ptr long) atl.AtlAxCreateDialogW -- 2.11.4.GIT