Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
c7071c03
Commit
c7071c03
authored
Nov 23, 1999
by
Ian Schmidt
Committed by
Alexandre Julliard
Nov 23, 1999
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stub for DllInstall().
parent
2fab2ef1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
2 deletions
+18
-2
shell32.spec
dlls/shell32/shell32.spec
+2
-2
shell32_main.c
dlls/shell32/shell32_main.c
+16
-0
No files found.
dlls/shell32/shell32.spec
View file @
c7071c03
...
...
@@ -391,4 +391,5 @@ init Shell32LibMain
# by-name routines relocated in win98
1224 stdcall SHFileOperationA (ptr) SHFileOperationA # exported by name
1225 stdcall SHFileOperationW (ptr) SHFileOperationW # exported by name
\ No newline at end of file
1225 stdcall SHFileOperationW (ptr) SHFileOperationW # exported by name
1226 stdcall DllInstall (long wstr) DllInstall # win98:202
dlls/shell32/shell32_main.c
View file @
c7071c03
...
...
@@ -879,3 +879,19 @@ BOOL WINAPI Shell32LibMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID fImpLoad)
}
return
TRUE
;
}
/*************************************************************************
* DllInstall [SHELL32.202]
*
* PARAMETERS
*
* BOOL bInstall - TRUE for install, FALSE for uninstall
* LPCWSTR pszCmdLine - command line (unused by shell32?)
*/
HRESULT
WINAPI
DllInstall
(
BOOL
bInstall
,
LPCWSTR
cmdline
)
{
FIXME_
(
shell
)(
"(%s, %s): stub!
\n
"
,
bInstall
?
"TRUE"
:
"FALSE"
,
debugstr_w
(
cmdline
));
return
S_OK
;
/* indicate success */
}
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