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
cf4a78b3
Commit
cf4a78b3
authored
Feb 03, 2020
by
Nikolay Sivov
Committed by
Alexandre Julliard
Feb 03, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shdocvw: Forward WhichPlatform() to shlwapi.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
bdf8d94e
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
13 deletions
+8
-13
shdocvw.spec
dlls/shdocvw/shdocvw.spec
+1
-1
shdocvw_main.c
dlls/shdocvw/shdocvw_main.c
+0
-11
shlwapi.h
include/shlwapi.h
+7
-1
No files found.
dlls/shdocvw/shdocvw.spec
View file @
cf4a78b3
...
...
@@ -2,7 +2,7 @@
101 stdcall -noname IEWinMain(str long)
102 stub -noname CreateShortcutInDirA
103 stub -noname CreateShortcutInDirW
104 stdcall -noname WhichPlatform
FORWARD()
104 stdcall -noname WhichPlatform
() shlwapi.WhichPlatform
105 stub -noname CreateShortcutInDirEx
106 stub HlinkFindFrame
107 stub SetShellOfflineState
...
...
dlls/shdocvw/shdocvw_main.c
View file @
cf4a78b3
...
...
@@ -284,17 +284,6 @@ static void* fetch_shlwapi_ordinal(UINT_PTR ord)
}
/******************************************************************
* WhichPlatformFORWARD (SHDOCVW.@)
*/
DWORD
WINAPI
WhichPlatformFORWARD
(
void
)
{
static
DWORD
(
WINAPI
*
p
)(
void
);
if
(
p
||
(
p
=
fetch_shlwapi_ordinal
(
276
)))
return
p
();
return
1
;
/* not integrated, see shlwapi.WhichPlatform */
}
/******************************************************************
* StopWatchModeFORWARD (SHDOCVW.@)
*/
void
WINAPI
StopWatchModeFORWARD
(
void
)
...
...
include/shlwapi.h
View file @
cf4a78b3
...
...
@@ -1135,7 +1135,6 @@ BOOL WINAPI IsOS(DWORD);
#define FDTF_RTLDATE 0x00000200
#define FDTF_NOAUTOREADINGORDER 0x00000400
typedef
struct
{
const
IID
*
piid
;
...
...
@@ -1144,6 +1143,13 @@ typedef struct
HRESULT
WINAPI
QISearch
(
void
*
base
,
const
QITAB
*
pqit
,
REFIID
riid
,
void
**
ppv
);
#define PLATFORM_UNKNOWN 0
#define PLATFORM_IE3 1
#define PLATFORM_BROWSERONLY 1
#define PLATFORM_INTEGRATED 2
UINT
WINAPI
WhichPlatform
(
void
);
#include <poppack.h>
#ifdef __cplusplus
...
...
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