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
4effec14
Commit
4effec14
authored
Dec 27, 2004
by
Mike McCormack
Committed by
Alexandre Julliard
Dec 27, 2004
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stub implementation for AtlModuleRegisterServer.
parent
78f90d90
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
1 deletion
+11
-1
atl.spec
dlls/atl/atl.spec
+1
-1
atl_main.c
dlls/atl/atl_main.c
+10
-0
No files found.
dlls/atl/atl.spec
View file @
4effec14
...
...
@@ -10,7 +10,7 @@
15 stub AtlModuleGetClassObject
16 stdcall AtlModuleInit(ptr long long)
17 stdcall AtlModuleRegisterClassObjects(ptr long long)
18 st
ub AtlModuleRegisterServer
18 st
dcall AtlModuleRegisterServer(ptr long ptr)
19 stub AtlModuleRegisterTypeLib
20 stub AtlModuleRevokeClassObjects
21 stdcall AtlModuleTerm(ptr)
...
...
dlls/atl/atl_main.c
View file @
4effec14
...
...
@@ -179,3 +179,13 @@ HRESULT WINAPI AtlModuleUpdateRegistryFromResourceD(_ATL_MODULEW* pM, LPCOLESTR
return
S_OK
;
}
/***********************************************************************
* AtlModuleRegisterServer [ATL.@]
*
*/
HRESULT
WINAPI
AtlModuleRegisterServer
(
_ATL_MODULEW
*
pM
,
BOOL
bRegTypeLib
,
const
CLSID
*
clsid
)
{
FIXME
(
"%p %d %s
\n
"
,
pM
,
bRegTypeLib
,
debugstr_guid
(
clsid
));
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