Added API documentation for DirectDrawEnumerateEx.

This commit is contained in:
James Hawkins 2004-08-30 18:37:17 +00:00 committed by Alexandre Julliard
parent 4d7892f886
commit fae181b099
1 changed files with 16 additions and 4 deletions

View File

@ -159,8 +159,20 @@ sym_not_found:
return FALSE; return FALSE;
} }
/*********************************************************************** /*******************************************************************************
* DirectDrawEnumerateExA (DDRAW.@) * DirectDrawEnumerateExA (DDRAW.@)
*
* Enumerates all DirectDraw devices installed on the system.
*
* PARAMS
* lpCallback [I] DDEnumCallbackEx function to be called with a description of
* each enumerated HAL.
* lpContext [I] application-defined value to be passed to the callback.
* dwFlags [I] Specifies the enumeration scope. see msdn.
*
* RETURNS
* Success: DD_OK.
* Failure: DDERR_INVALIDPARAMS
*/ */
HRESULT WINAPI DirectDrawEnumerateExA( HRESULT WINAPI DirectDrawEnumerateExA(
LPDDENUMCALLBACKEXA lpCallback, LPVOID lpContext, DWORD dwFlags) LPDDENUMCALLBACKEXA lpCallback, LPVOID lpContext, DWORD dwFlags)
@ -206,8 +218,8 @@ HRESULT WINAPI DirectDrawEnumerateExA(
return DD_OK; return DD_OK;
} }
/*********************************************************************** /*******************************************************************************
* DirectDrawEnumerateExW (DDRAW.@) * DirectDrawEnumerateExW (DDRAW.@)
*/ */
static BOOL CALLBACK DirectDrawEnumerateExProcW( static BOOL CALLBACK DirectDrawEnumerateExProcW(