Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-fonts
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
Aleksandr Isakov
wine-fonts
Commits
99bde8b0
Commit
99bde8b0
authored
Feb 19, 2008
by
Rob Shearman
Committed by
Alexandre Julliard
Feb 19, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
shdocvw: The WINAPI modifier on function pointers should become before the '*' for portability.
parent
dfda3c4d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
shdocvw_main.c
dlls/shdocvw/shdocvw_main.c
+5
-5
No files found.
dlls/shdocvw/shdocvw_main.c
View file @
99bde8b0
...
...
@@ -217,7 +217,7 @@ static void* fetch_shlwapi_ordinal(unsigned ord)
*/
DWORD
WINAPI
WhichPlatformFORWARD
(
void
)
{
static
DWORD
(
*
WINAPI
p
)(
void
);
static
DWORD
(
WINAPI
*
p
)(
void
);
if
(
p
||
(
p
=
fetch_shlwapi_ordinal
(
276
)))
return
p
();
return
1
;
/* not integrated, see shlwapi.WhichPlatform */
...
...
@@ -228,7 +228,7 @@ DWORD WINAPI WhichPlatformFORWARD(void)
*/
void
WINAPI
StopWatchModeFORWARD
(
void
)
{
static
void
(
*
WINAPI
p
)(
void
);
static
void
(
WINAPI
*
p
)(
void
);
if
(
p
||
(
p
=
fetch_shlwapi_ordinal
(
241
)))
p
();
}
...
...
@@ -238,7 +238,7 @@ void WINAPI StopWatchModeFORWARD(void)
*/
void
WINAPI
StopWatchFlushFORWARD
(
void
)
{
static
void
(
*
WINAPI
p
)(
void
);
static
void
(
WINAPI
*
p
)(
void
);
if
(
p
||
(
p
=
fetch_shlwapi_ordinal
(
242
)))
p
();
}
...
...
@@ -249,7 +249,7 @@ void WINAPI StopWatchFlushFORWARD(void)
DWORD
WINAPI
StopWatchWFORWARD
(
DWORD
dwClass
,
LPCWSTR
lpszStr
,
DWORD
dwUnknown
,
DWORD
dwMode
,
DWORD
dwTimeStamp
)
{
static
DWORD
(
*
WINAPI
p
)(
DWORD
,
LPCWSTR
,
DWORD
,
DWORD
,
DWORD
);
static
DWORD
(
WINAPI
*
p
)(
DWORD
,
LPCWSTR
,
DWORD
,
DWORD
,
DWORD
);
if
(
p
||
(
p
=
fetch_shlwapi_ordinal
(
243
)))
return
p
(
dwClass
,
lpszStr
,
dwUnknown
,
dwMode
,
dwTimeStamp
);
...
...
@@ -262,7 +262,7 @@ DWORD WINAPI StopWatchWFORWARD(DWORD dwClass, LPCWSTR lpszStr, DWORD dwUnknown,
DWORD
WINAPI
StopWatchAFORWARD
(
DWORD
dwClass
,
LPCSTR
lpszStr
,
DWORD
dwUnknown
,
DWORD
dwMode
,
DWORD
dwTimeStamp
)
{
static
DWORD
(
*
WINAPI
p
)(
DWORD
,
LPCSTR
,
DWORD
,
DWORD
,
DWORD
);
static
DWORD
(
WINAPI
*
p
)(
DWORD
,
LPCSTR
,
DWORD
,
DWORD
,
DWORD
);
if
(
p
||
(
p
=
fetch_shlwapi_ordinal
(
244
)))
return
p
(
dwClass
,
lpszStr
,
dwUnknown
,
dwMode
,
dwTimeStamp
);
...
...
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