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
fed3a4ae
Commit
fed3a4ae
authored
May 21, 2008
by
Andrew Talbot
Committed by
Alexandre Julliard
May 22, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dplayx: Remove unneeded "extern" from function definitions.
parent
c58e59f4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
8 deletions
+3
-8
dplay.c
dlls/dplayx/dplay.c
+0
-3
dplaysp.c
dlls/dplayx/dplaysp.c
+1
-2
dplobby.c
dlls/dplayx/dplobby.c
+2
-3
No files found.
dlls/dplayx/dplay.c
View file @
fed3a4ae
...
...
@@ -471,7 +471,6 @@ static BOOL DP_DestroyDirectPlay4( LPVOID lpDP )
/* Create a new interface */
extern
HRESULT
DP_CreateInterface
(
REFIID
riid
,
LPVOID
*
ppvObj
)
{
...
...
@@ -5139,7 +5138,6 @@ static const IDirectPlay4Vtbl directPlay4AVT =
};
#undef XCAST
extern
HRESULT
DP_GetSPPlayerData
(
IDirectPlay2Impl
*
lpDP
,
DPID
idPlayer
,
LPVOID
*
lplpData
)
...
...
@@ -5156,7 +5154,6 @@ HRESULT DP_GetSPPlayerData( IDirectPlay2Impl* lpDP,
return
DP_OK
;
}
extern
HRESULT
DP_SetSPPlayerData
(
IDirectPlay2Impl
*
lpDP
,
DPID
idPlayer
,
LPVOID
lpData
)
...
...
dlls/dplayx/dplaysp.c
View file @
fed3a4ae
...
...
@@ -86,7 +86,6 @@ typedef struct tagDP_SPPLAYERDATA
}
DP_SPPLAYERDATA
,
*
LPDP_SPPLAYERDATA
;
/* Create the SP interface */
extern
HRESULT
DPSP_CreateInterface
(
REFIID
riid
,
LPVOID
*
ppvObj
,
IDirectPlay2Impl
*
dp
)
{
TRACE
(
" for %s
\n
"
,
debugstr_guid
(
riid
)
);
...
...
@@ -949,7 +948,7 @@ static const IDirectPlaySPVtbl directPlaySPVT =
/* DP external interfaces to call into DPSP interface */
/* Allocate the structure */
extern
LPVOID
DPSP_CreateSPPlayerData
(
void
)
LPVOID
DPSP_CreateSPPlayerData
(
void
)
{
TRACE
(
"Creating SPPlayer data struct
\n
"
);
return
HeapAlloc
(
GetProcessHeap
(),
HEAP_ZERO_MEMORY
,
...
...
dlls/dplayx/dplobby.c
View file @
fed3a4ae
...
...
@@ -270,7 +270,6 @@ static BOOL DPL_DestroyLobby3( LPVOID lpDPL )
* successfully for a third interface, a query for the first interface
* through the pointer for the third interface must succeed.
*/
extern
HRESULT
DPL_CreateInterface
(
REFIID
riid
,
LPVOID
*
ppvObj
)
{
...
...
@@ -679,8 +678,8 @@ static HRESULT WINAPI IDirectPlayLobbyWImpl_EnumAddress
return
DPL_EnumAddress
(
lpEnumAddressCallback
,
lpAddress
,
dwAddressSize
,
lpContext
);
}
extern
HRESULT
DPL_EnumAddress
(
LPDPENUMADDRESSCALLBACK
lpEnumAddressCallback
,
LPCVOID
lpAddress
,
DWORD
dwAddressSize
,
LPVOID
lpContext
)
HRESULT
DPL_EnumAddress
(
LPDPENUMADDRESSCALLBACK
lpEnumAddressCallback
,
LPCVOID
lpAddress
,
DWORD
dwAddressSize
,
LPVOID
lpContext
)
{
DWORD
dwTotalSizeEnumerated
=
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