mirror of
https://github.com/reactos/reactos.git
synced 2025-04-26 08:30:21 +00:00
update some comment
DD COM object now we got 7 of 30 done and 7 of 30 are under developing / testing total we got 14 of 30 that is working svn path=/trunk/; revision=27101
This commit is contained in:
parent
048061505b
commit
2d86b0c8ad
1 changed files with 8 additions and 4 deletions
|
@ -494,7 +494,7 @@ Main_DirectDraw_GetDeviceIdentifier7(LPDIRECTDRAW7 iface,
|
||||||
|
|
||||||
if (!_stricmp(DisplayDeviceA.DeviceName, This->lpLcl->lpGbl->cDriverName))
|
if (!_stricmp(DisplayDeviceA.DeviceName, This->lpLcl->lpGbl->cDriverName))
|
||||||
{
|
{
|
||||||
// if we got another device like hardware mpeg decoder or video card or another drv
|
/* if we got another device like hardware mpeg decoder or video card or another drv */
|
||||||
found = TRUE;
|
found = TRUE;
|
||||||
}
|
}
|
||||||
else if (DisplayDeviceA.StateFlags & DISPLAY_DEVICE_PRIMARY_DEVICE)
|
else if (DisplayDeviceA.StateFlags & DISPLAY_DEVICE_PRIMARY_DEVICE)
|
||||||
|
@ -558,7 +558,11 @@ Main_DirectDraw_GetDeviceIdentifier7(LPDIRECTDRAW7 iface,
|
||||||
*lpdata = *lpdata ^ pDDDI->dwRevision;
|
*lpdata = *lpdata ^ pDDDI->dwRevision;
|
||||||
*lpdata = *lpdata ^ pDDDI->liDriverVersion.HighPart;
|
*lpdata = *lpdata ^ pDDDI->liDriverVersion.HighPart;
|
||||||
|
|
||||||
/* FIXME pDDDI->dwWHQLLevel */
|
/* FIXME pDDDI->dwWHQLLevel
|
||||||
|
* we leave this with no informations, I do not known
|
||||||
|
* if program care for it, I mark this api done, and
|
||||||
|
* tested, no bugs was found in it
|
||||||
|
*/
|
||||||
pDDDI->dwWHQLLevel = 0;
|
pDDDI->dwWHQLLevel = 0;
|
||||||
retVal = DD_OK;
|
retVal = DD_OK;
|
||||||
}
|
}
|
||||||
|
@ -602,7 +606,7 @@ IDirectDraw7Vtbl DirectDraw7_Vtable =
|
||||||
Main_DirectDraw_GetMonitorFrequency, /* (GetMonitorFrequency done) */
|
Main_DirectDraw_GetMonitorFrequency, /* (GetMonitorFrequency done) */
|
||||||
Main_DirectDraw_GetScanLine,
|
Main_DirectDraw_GetScanLine,
|
||||||
Main_DirectDraw_GetVerticalBlankStatus,
|
Main_DirectDraw_GetVerticalBlankStatus,
|
||||||
Main_DirectDraw_Initialize,
|
Main_DirectDraw_Initialize, /* (Initialize done) */
|
||||||
Main_DirectDraw_RestoreDisplayMode, /* (RestoreDisplayMode testing / devloping) */
|
Main_DirectDraw_RestoreDisplayMode, /* (RestoreDisplayMode testing / devloping) */
|
||||||
Main_DirectDraw_SetCooperativeLevel, /* (SetCooperativeLevel testing / devloping) */
|
Main_DirectDraw_SetCooperativeLevel, /* (SetCooperativeLevel testing / devloping) */
|
||||||
Main_DirectDraw_SetDisplayMode, /* (SetDisplayMode testing / devloping) */
|
Main_DirectDraw_SetDisplayMode, /* (SetDisplayMode testing / devloping) */
|
||||||
|
@ -611,7 +615,7 @@ IDirectDraw7Vtbl DirectDraw7_Vtable =
|
||||||
Main_DirectDraw_GetSurfaceFromDC,
|
Main_DirectDraw_GetSurfaceFromDC,
|
||||||
Main_DirectDraw_RestoreAllSurfaces,
|
Main_DirectDraw_RestoreAllSurfaces,
|
||||||
Main_DirectDraw_TestCooperativeLevel,
|
Main_DirectDraw_TestCooperativeLevel,
|
||||||
Main_DirectDraw_GetDeviceIdentifier7,
|
Main_DirectDraw_GetDeviceIdentifier7, /* (GetDeviceIdentifier done) */
|
||||||
Main_DirectDraw_StartModeTest,
|
Main_DirectDraw_StartModeTest,
|
||||||
Main_DirectDraw_EvaluateMode
|
Main_DirectDraw_EvaluateMode
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue