Skip to content
Snippets Groups Projects
Commit 26e61684 authored by Stefan Leichter's avatar Stefan Leichter Committed by Alexandre Julliard
Browse files

Added stub for AtlModuleUpdateRegistryFromResourceD.

parent 8702418d
No related branches found
No related tags found
No related merge requests found
......@@ -15,7 +15,7 @@
20 stub AtlModuleRevokeClassObjects
21 stdcall AtlModuleTerm(ptr)
22 stub AtlModuleUnregisterServer
23 stub AtlModuleUpdateRegistryFromResourceD
23 stdcall AtlModuleUpdateRegistryFromResourceD(ptr wstr long ptr ptr)
24 stub AtlWaitWithMessageLoop
25 stub AtlSetErrorInfo
26 stub AtlCreateTargetDC
......
......@@ -150,3 +150,24 @@ HRESULT WINAPI AtlInternalQueryInterface(LPVOID this, const _ATL_INTMAP_ENTRY* p
TRACE("Done returning (0x%lx)\n",rc);
return rc;
}
/***********************************************************************
* AtlModuleUpdateRegistryFromResourceD [ATL.@]
*
*/
HRESULT WINAPI AtlModuleUpdateRegistryFromResourceD(_ATL_MODULEW* pM, LPCOLESTR lpszRes,
BOOL bRegister, /* struct _ATL_REGMAP_ENTRY* */ void* pMapEntries, /* IRegistrar* */ void* pReg)
{
HINSTANCE hInst = pM->m_hInst;
/* everything inside this function below this point
* should go into atl71.AtlUpdateRegistryFromResourceD
*/
WCHAR module_name[MAX_PATH];
GetModuleFileNameW(hInst, module_name, MAX_PATH);
FIXME("stub %p (%s), %s, %d, %p, %p\n", hInst, debugstr_w(module_name),
debugstr_w(lpszRes), bRegister, pMapEntries, pReg);
return S_OK;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment