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
ec6f88b5
Commit
ec6f88b5
authored
Nov 24, 2008
by
Francois Gouget
Committed by
Alexandre Julliard
Nov 25, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wineoss: Remove WINAPI on static functions where not needed.
parent
52367966
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
10 deletions
+10
-10
dscapture.c
dlls/wineoss.drv/dscapture.c
+4
-4
dsrender.c
dlls/wineoss.drv/dsrender.c
+6
-6
No files found.
dlls/wineoss.drv/dscapture.c
View file @
ec6f88b5
...
...
@@ -138,11 +138,11 @@ struct IDsCaptureDriverBufferImpl
int
fd
;
};
static
HRESULT
WINAPI
IDsCaptureDriverPropertySetImpl_Create
(
static
HRESULT
IDsCaptureDriverPropertySetImpl_Create
(
IDsCaptureDriverBufferImpl
*
dscdb
,
IDsCaptureDriverPropertySetImpl
**
pdscdps
);
static
HRESULT
WINAPI
IDsCaptureDriverNotifyImpl_Create
(
static
HRESULT
IDsCaptureDriverNotifyImpl_Create
(
IDsCaptureDriverBufferImpl
*
dsdcb
,
IDsCaptureDriverNotifyImpl
**
pdscdn
);
...
...
@@ -1232,7 +1232,7 @@ static const IDsCaptureDriverVtbl dscdvt =
IDsCaptureDriverImpl_CreateCaptureBuffer
};
static
HRESULT
WINAPI
IDsCaptureDriverPropertySetImpl_Create
(
static
HRESULT
IDsCaptureDriverPropertySetImpl_Create
(
IDsCaptureDriverBufferImpl
*
dscdb
,
IDsCaptureDriverPropertySetImpl
**
pdscdps
)
{
...
...
@@ -1255,7 +1255,7 @@ static HRESULT WINAPI IDsCaptureDriverPropertySetImpl_Create(
return
DS_OK
;
}
static
HRESULT
WINAPI
IDsCaptureDriverNotifyImpl_Create
(
static
HRESULT
IDsCaptureDriverNotifyImpl_Create
(
IDsCaptureDriverBufferImpl
*
dscdb
,
IDsCaptureDriverNotifyImpl
**
pdscdn
)
{
...
...
dlls/wineoss.drv/dsrender.c
View file @
ec6f88b5
...
...
@@ -132,11 +132,11 @@ struct IDsDriverBufferImpl
IDsDriverPropertySetImpl
*
property_set
;
};
static
HRESULT
WINAPI
IDsDriverPropertySetImpl_Create
(
static
HRESULT
IDsDriverPropertySetImpl_Create
(
IDsDriverBufferImpl
*
dsdb
,
IDsDriverPropertySetImpl
**
pdsdps
);
static
HRESULT
WINAPI
IDsDriverNotifyImpl_Create
(
static
HRESULT
IDsDriverNotifyImpl_Create
(
IDsDriverBufferImpl
*
dsdb
,
IDsDriverNotifyImpl
**
pdsdn
);
...
...
@@ -765,7 +765,7 @@ static HRESULT WINAPI IDsDriverImpl_GetCaps(PIDSDRIVER iface, PDSDRIVERCAPS pCap
return
DS_OK
;
}
static
HRESULT
WINAPI
DSD_CreatePrimaryBuffer
(
PIDSDRIVER
iface
,
static
HRESULT
DSD_CreatePrimaryBuffer
(
PIDSDRIVER
iface
,
LPWAVEFORMATEX
pwfx
,
DWORD
dwFlags
,
DWORD
dwCardAddress
,
...
...
@@ -832,7 +832,7 @@ static HRESULT WINAPI DSD_CreatePrimaryBuffer(PIDSDRIVER iface,
return
DS_OK
;
}
static
HRESULT
WINAPI
DSD_CreateSecondaryBuffer
(
PIDSDRIVER
iface
,
static
HRESULT
DSD_CreateSecondaryBuffer
(
PIDSDRIVER
iface
,
LPWAVEFORMATEX
pwfx
,
DWORD
dwFlags
,
DWORD
dwCardAddress
,
...
...
@@ -886,7 +886,7 @@ static const IDsDriverVtbl dsdvt =
IDsDriverImpl_DuplicateSoundBuffer
};
static
HRESULT
WINAPI
IDsDriverPropertySetImpl_Create
(
static
HRESULT
IDsDriverPropertySetImpl_Create
(
IDsDriverBufferImpl
*
dsdb
,
IDsDriverPropertySetImpl
**
pdsdps
)
{
...
...
@@ -909,7 +909,7 @@ static HRESULT WINAPI IDsDriverPropertySetImpl_Create(
return
DS_OK
;
}
static
HRESULT
WINAPI
IDsDriverNotifyImpl_Create
(
static
HRESULT
IDsDriverNotifyImpl_Create
(
IDsDriverBufferImpl
*
dsdb
,
IDsDriverNotifyImpl
**
pdsdn
)
{
...
...
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