Commit 63b596d7 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

Tweak the documentation to make winapi_check happy.

parent 8054f6c5
...@@ -722,6 +722,10 @@ UINT WINAPI MsiEnumClientsW(LPCWSTR szComponent, DWORD index, LPWSTR szProduct) ...@@ -722,6 +722,10 @@ UINT WINAPI MsiEnumClientsW(LPCWSTR szComponent, DWORD index, LPWSTR szProduct)
return r; return r;
} }
/*************************************************************************
* MsiEnumComponentQualifiersA [MSI.@]
*
*/
UINT WINAPI MsiEnumComponentQualifiersA( LPSTR szComponent, DWORD iIndex, UINT WINAPI MsiEnumComponentQualifiersA( LPSTR szComponent, DWORD iIndex,
LPSTR lpQualifierBuf, DWORD* pcchQualifierBuf, LPSTR lpQualifierBuf, DWORD* pcchQualifierBuf,
LPSTR lpApplicationDataBuf, DWORD* pcchApplicationDataBuf) LPSTR lpApplicationDataBuf, DWORD* pcchApplicationDataBuf)
...@@ -768,7 +772,7 @@ UINT WINAPI MsiEnumComponentQualifiersA( LPSTR szComponent, DWORD iIndex, ...@@ -768,7 +772,7 @@ UINT WINAPI MsiEnumComponentQualifiersA( LPSTR szComponent, DWORD iIndex,
/* /*
* A bit of wizardry to report back the length without the null. * A bit of wizardry to report back the length without the null.
* just in case the buffer is to small and is filled. * just in case the buffer is too small and is filled.
*/ */
if (lpQualifierBuf) if (lpQualifierBuf)
{ {
...@@ -799,6 +803,10 @@ UINT WINAPI MsiEnumComponentQualifiersA( LPSTR szComponent, DWORD iIndex, ...@@ -799,6 +803,10 @@ UINT WINAPI MsiEnumComponentQualifiersA( LPSTR szComponent, DWORD iIndex,
return rc; return rc;
} }
/*************************************************************************
* MsiEnumComponentQualifiersW [MSI.@]
*
*/
UINT WINAPI MsiEnumComponentQualifiersW( LPWSTR szComponent, DWORD iIndex, UINT WINAPI MsiEnumComponentQualifiersW( LPWSTR szComponent, DWORD iIndex,
LPWSTR lpQualifierBuf, DWORD* pcchQualifierBuf, LPWSTR lpQualifierBuf, DWORD* pcchQualifierBuf,
LPWSTR lpApplicationDataBuf, DWORD* pcchApplicationDataBuf ) LPWSTR lpApplicationDataBuf, DWORD* pcchApplicationDataBuf )
...@@ -858,6 +866,10 @@ UINT WINAPI MsiEnumComponentQualifiersW( LPWSTR szComponent, DWORD iIndex, ...@@ -858,6 +866,10 @@ UINT WINAPI MsiEnumComponentQualifiersW( LPWSTR szComponent, DWORD iIndex,
return rc; return rc;
} }
/*************************************************************************
* MsiEnumRelatedProductsW [MSI.@]
*
*/
UINT WINAPI MsiEnumRelatedProductsW(LPCWSTR szUpgradeCode, DWORD dwReserved, UINT WINAPI MsiEnumRelatedProductsW(LPCWSTR szUpgradeCode, DWORD dwReserved,
DWORD iProductIndex, LPWSTR lpProductBuf) DWORD iProductIndex, LPWSTR lpProductBuf)
{ {
...@@ -885,6 +897,10 @@ UINT WINAPI MsiEnumRelatedProductsW(LPCWSTR szUpgradeCode, DWORD dwReserved, ...@@ -885,6 +897,10 @@ UINT WINAPI MsiEnumRelatedProductsW(LPCWSTR szUpgradeCode, DWORD dwReserved,
return r; return r;
} }
/*************************************************************************
* MsiEnumRelatedProductsA [MSI.@]
*
*/
UINT WINAPI MsiEnumRelatedProductsA(LPCSTR szUpgradeCode, DWORD dwReserved, UINT WINAPI MsiEnumRelatedProductsA(LPCSTR szUpgradeCode, DWORD dwReserved,
DWORD iProductIndex, LPSTR lpProductBuf) DWORD iProductIndex, LPSTR lpProductBuf)
{ {
......
...@@ -272,10 +272,11 @@ choose_exit: ...@@ -272,10 +272,11 @@ choose_exit:
return ret; return ret;
} }
/* X11DRV_DescribePixelFormat /**
* X11DRV_DescribePixelFormat
Get the pixel-format descriptor associated to the given id *
*/ * Get the pixel-format descriptor associated to the given id
*/
int X11DRV_DescribePixelFormat(X11DRV_PDEVICE *physDev, int X11DRV_DescribePixelFormat(X11DRV_PDEVICE *physDev,
int iPixelFormat, int iPixelFormat,
UINT nBytes, UINT nBytes,
...@@ -403,20 +404,22 @@ int X11DRV_DescribePixelFormat(X11DRV_PDEVICE *physDev, ...@@ -403,20 +404,22 @@ int X11DRV_DescribePixelFormat(X11DRV_PDEVICE *physDev,
return ret; return ret;
} }
/* X11DRV_GetPixelFormat /**
* X11DRV_GetPixelFormat
Get the pixel-format id used by this DC *
*/ * Get the pixel-format id used by this DC
*/
int X11DRV_GetPixelFormat(X11DRV_PDEVICE *physDev) { int X11DRV_GetPixelFormat(X11DRV_PDEVICE *physDev) {
TRACE("(%p): returns %d\n", physDev, physDev->current_pf); TRACE("(%p): returns %d\n", physDev, physDev->current_pf);
return physDev->current_pf; return physDev->current_pf;
} }
/* X11DRV_SetPixelFormat /**
* X11DRV_SetPixelFormat
Set the pixel-format id used by this DC *
*/ * Set the pixel-format id used by this DC
*/
BOOL X11DRV_SetPixelFormat(X11DRV_PDEVICE *physDev, BOOL X11DRV_SetPixelFormat(X11DRV_PDEVICE *physDev,
int iPixelFormat, int iPixelFormat,
const PIXELFORMATDESCRIPTOR *ppfd) { const PIXELFORMATDESCRIPTOR *ppfd) {
...@@ -427,10 +430,11 @@ BOOL X11DRV_SetPixelFormat(X11DRV_PDEVICE *physDev, ...@@ -427,10 +430,11 @@ BOOL X11DRV_SetPixelFormat(X11DRV_PDEVICE *physDev,
return TRUE; return TRUE;
} }
/* X11DRV_SwapBuffers /**
* X11DRV_SwapBuffers
Swap the buffers of this DC *
*/ * Swap the buffers of this DC
*/
BOOL X11DRV_SwapBuffers(X11DRV_PDEVICE *physDev) { BOOL X11DRV_SwapBuffers(X11DRV_PDEVICE *physDev) {
if (opengl_handle == NULL) { if (opengl_handle == NULL) {
ERR("No libGL on this box - disabling OpenGL support !\n"); ERR("No libGL on this box - disabling OpenGL support !\n");
......
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