More accurate stub of DDRAW:GetFourCCCodes.

This commit is contained in:
Jason McMullan 2001-05-31 21:31:04 +00:00 committed by Alexandre Julliard
parent aa5b6ce836
commit 238b1de12b
1 changed files with 3 additions and 0 deletions

View File

@ -793,6 +793,9 @@ Main_DirectDraw_GetFourCCCodes(LPDIRECTDRAW7 iface, LPDWORD pNumCodes,
LPDWORD pCodes)
{
ICOM_THIS(IDirectDrawImpl,iface);
if (*pNumCodes) {
*pNumCodes=0;
}
FIXME("(%p,%p,%p), stub\n",This,pNumCodes,pCodes);
return DD_OK;
}