wineoss: Remove WINAPI on static functions where not needed.
This commit is contained in:
parent
523679666d
commit
ec6f88b5c4
|
@ -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)
|
||||
{
|
||||
|
|
|
@ -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,13 +765,13 @@ static HRESULT WINAPI IDsDriverImpl_GetCaps(PIDSDRIVER iface, PDSDRIVERCAPS pCap
|
|||
return DS_OK;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI DSD_CreatePrimaryBuffer(PIDSDRIVER iface,
|
||||
LPWAVEFORMATEX pwfx,
|
||||
DWORD dwFlags,
|
||||
DWORD dwCardAddress,
|
||||
LPDWORD pdwcbBufferSize,
|
||||
LPBYTE *ppbBuffer,
|
||||
LPVOID *ppvObj)
|
||||
static HRESULT DSD_CreatePrimaryBuffer(PIDSDRIVER iface,
|
||||
LPWAVEFORMATEX pwfx,
|
||||
DWORD dwFlags,
|
||||
DWORD dwCardAddress,
|
||||
LPDWORD pdwcbBufferSize,
|
||||
LPBYTE *ppbBuffer,
|
||||
LPVOID *ppvObj)
|
||||
{
|
||||
IDsDriverImpl *This = (IDsDriverImpl *)iface;
|
||||
IDsDriverBufferImpl** ippdsdb = (IDsDriverBufferImpl**)ppvObj;
|
||||
|
@ -832,13 +832,13 @@ static HRESULT WINAPI DSD_CreatePrimaryBuffer(PIDSDRIVER iface,
|
|||
return DS_OK;
|
||||
}
|
||||
|
||||
static HRESULT WINAPI DSD_CreateSecondaryBuffer(PIDSDRIVER iface,
|
||||
LPWAVEFORMATEX pwfx,
|
||||
DWORD dwFlags,
|
||||
DWORD dwCardAddress,
|
||||
LPDWORD pdwcbBufferSize,
|
||||
LPBYTE *ppbBuffer,
|
||||
LPVOID *ppvObj)
|
||||
static HRESULT DSD_CreateSecondaryBuffer(PIDSDRIVER iface,
|
||||
LPWAVEFORMATEX pwfx,
|
||||
DWORD dwFlags,
|
||||
DWORD dwCardAddress,
|
||||
LPDWORD pdwcbBufferSize,
|
||||
LPBYTE *ppbBuffer,
|
||||
LPVOID *ppvObj)
|
||||
{
|
||||
IDsDriverImpl *This = (IDsDriverImpl *)iface;
|
||||
IDsDriverBufferImpl** ippdsdb = (IDsDriverBufferImpl**)ppvObj;
|
||||
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue