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
fc33d3bc
Commit
fc33d3bc
authored
Apr 04, 2006
by
Mike McCormack
Committed by
Alexandre Julliard
Apr 05, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shdocvw: Stub implementation of IEWinMain.
parent
330978ec
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
shdocvw.spec
dlls/shdocvw/shdocvw.spec
+1
-1
shdocvw_main.c
dlls/shdocvw/shdocvw_main.c
+12
-0
No files found.
dlls/shdocvw/shdocvw.spec
View file @
fc33d3bc
# ordinal exports
# ordinal exports
101 st
ub -noname IEWinMain
101 st
dcall -noname IEWinMain(str long)
102 stub -noname CreateShortcutInDirA
102 stub -noname CreateShortcutInDirA
103 stub -noname CreateShortcutInDirW
103 stub -noname CreateShortcutInDirW
104 stdcall -noname WhichPlatformFORWARD()
104 stdcall -noname WhichPlatformFORWARD()
...
...
dlls/shdocvw/shdocvw_main.c
View file @
fc33d3bc
...
@@ -656,3 +656,15 @@ DWORD WINAPI StopWatchAFORWARD(DWORD dwClass, LPCSTR lpszStr, DWORD dwUnknown,
...
@@ -656,3 +656,15 @@ DWORD WINAPI StopWatchAFORWARD(DWORD dwClass, LPCSTR lpszStr, DWORD dwUnknown,
return
p
(
dwClass
,
lpszStr
,
dwUnknown
,
dwMode
,
dwTimeStamp
);
return
p
(
dwClass
,
lpszStr
,
dwUnknown
,
dwMode
,
dwTimeStamp
);
return
ERROR_CALL_NOT_IMPLEMENTED
;
return
ERROR_CALL_NOT_IMPLEMENTED
;
}
}
/******************************************************************
* IEWinMain (SHDOCVW.101)
*
* Only returns on error.
*/
DWORD
WINAPI
IEWinMain
(
LPSTR
szCommandLine
,
int
nShowWindow
)
{
FIXME
(
"%s %d
\n
"
,
debugstr_a
(
szCommandLine
),
nShowWindow
);
ExitProcess
(
0
);
return
0
;
}
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