Commit fae181b0 authored by James Hawkins's avatar James Hawkins Committed by Alexandre Julliard

Added API documentation for DirectDrawEnumerateEx.

parent 4d7892f8
...@@ -159,8 +159,20 @@ sym_not_found: ...@@ -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( ...@@ -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(
......
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