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
b24fb8bf
Commit
b24fb8bf
authored
Nov 04, 2009
by
Paul Chitescu
Committed by
Alexandre Julliard
Nov 05, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
sccbase: Stubs for DllRegisterServer() and DllUnregisterServer().
parent
91bf659d
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
2 deletions
+20
-2
main.c
dlls/sccbase/main.c
+18
-0
sccbase.spec
dlls/sccbase/sccbase.spec
+2
-2
No files found.
dlls/sccbase/main.c
View file @
b24fb8bf
...
@@ -44,3 +44,21 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
...
@@ -44,3 +44,21 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
}
}
return
TRUE
;
return
TRUE
;
}
}
/*****************************************************
* DllRegisterServer (SCCBASE.@)
*/
HRESULT
WINAPI
DllRegisterServer
(
void
)
{
FIXME
(
"Not implemented.
\n
"
);
return
E_UNEXPECTED
;
}
/*****************************************************
* DllUnregisterServer (SCCBASE.@)
*/
HRESULT
WINAPI
DllUnregisterServer
(
void
)
{
FIXME
(
"Not implemented.
\n
"
);
return
E_UNEXPECTED
;
}
dlls/sccbase/sccbase.spec
View file @
b24fb8bf
...
@@ -22,5 +22,5 @@
...
@@ -22,5 +22,5 @@
@ stub CPSetProvParam
@ stub CPSetProvParam
@ stub CPSignHash
@ stub CPSignHash
@ stub CPVerifySignature
@ stub CPVerifySignature
@ st
ub DllRegisterServer
@ st
dcall -private DllRegisterServer()
@ st
ub DllUnregisterServer
@ st
dcall -private DllUnregisterServer()
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