Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
26e61684
Commit
26e61684
authored
Sep 02, 2004
by
Stefan Leichter
Committed by
Alexandre Julliard
Sep 02, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stub for AtlModuleUpdateRegistryFromResourceD.
parent
8702418d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
1 deletion
+22
-1
atl.spec
dlls/atl/atl.spec
+1
-1
atl_main.c
dlls/atl/atl_main.c
+21
-0
No files found.
dlls/atl/atl.spec
View file @
26e61684
...
...
@@ -15,7 +15,7 @@
20 stub AtlModuleRevokeClassObjects
21 stdcall AtlModuleTerm(ptr)
22 stub AtlModuleUnregisterServer
23 st
ub AtlModuleUpdateRegistryFromResourceD
23 st
dcall AtlModuleUpdateRegistryFromResourceD(ptr wstr long ptr ptr)
24 stub AtlWaitWithMessageLoop
25 stub AtlSetErrorInfo
26 stub AtlCreateTargetDC
...
...
dlls/atl/atl_main.c
View file @
26e61684
...
...
@@ -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
;
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment