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
6fc49544
Commit
6fc49544
authored
May 02, 2010
by
Andrew Nguyen
Committed by
Alexandre Julliard
May 03, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
regsvr32: Continue processing DLL list if an export is not found for a DLL.
parent
dd4221fc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
regsvr32.c
programs/regsvr32/regsvr32.c
+9
-1
No files found.
programs/regsvr32/regsvr32.c
View file @
6fc49544
...
...
@@ -100,7 +100,7 @@ static VOID *LoadProc(const char* strDll, const char* procName, HMODULE* DllHand
if
(
!
Silent
)
printf
(
"%s not implemented in DLL %s
\n
"
,
procName
,
strDll
);
FreeLibrary
(
*
DllHandle
);
ExitProcess
(
1
)
;
return
NULL
;
}
return
proc
;
}
...
...
@@ -112,6 +112,8 @@ static int RegisterDll(const char* strDll)
HMODULE
DllHandle
=
NULL
;
pfRegister
=
LoadProc
(
strDll
,
"DllRegisterServer"
,
&
DllHandle
);
if
(
!
pfRegister
)
return
0
;
hr
=
pfRegister
();
if
(
FAILED
(
hr
))
...
...
@@ -136,6 +138,9 @@ static int UnregisterDll(char* strDll)
HMODULE
DllHandle
=
NULL
;
pfUnregister
=
LoadProc
(
strDll
,
"DllUnregisterServer"
,
&
DllHandle
);
if
(
!
pfUnregister
)
return
0
;
hr
=
pfUnregister
();
if
(
FAILED
(
hr
))
{
...
...
@@ -159,6 +164,9 @@ static int InstallDll(BOOL install, char *strDll, WCHAR *command_line)
HMODULE
DllHandle
=
NULL
;
pfInstall
=
LoadProc
(
strDll
,
"DllInstall"
,
&
DllHandle
);
if
(
!
pfInstall
)
return
0
;
hr
=
pfInstall
(
install
,
command_line
);
if
(
FAILED
(
hr
))
{
...
...
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