Limit number of DirectDrawClipper_SetClipList FIXMEs

Stefan Leichter Stefan.Leichter at camLine.com
Sat Aug 21 04:08:09 CDT 2004


Am Freitag, 20. August 2004 18:37 schrieb Tobias Burnus:
> +
>   HRESULT WINAPI Main_DirectDrawClipper_SetClipList(
> -    LPDIRECTDRAWCLIPPER iface,LPRGNDATA lprgn,DWORD pdwSize
> +    LPDIRECTDRAWCLIPPER iface,LPRGNDATA lprgn,DWORD pdwFlag
>   ) {
>       ICOM_THIS(IDirectDrawClipperImpl,iface);
> -    FIXME("(%p,%p,%ld),stub!\n",This,lprgn,pdwSize);
> +    static int warned = 0;
> +    if (warned++ < 10 && lprgn != NULL)
 Hello,

for me this looks like

    if (0 < 10 && lprgn != NULL)

what is the same like 

    if (lprgn != NULL)

I thing you meant something different

Bye Stefan



More information about the wine-devel mailing list