Commit ec6f88b5 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

wineoss: Remove WINAPI on static functions where not needed.

parent 52367966
......@@ -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,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)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment