reg: Implement binary data add operation

Alexandre Julliard julliard at winehq.org
Thu Sep 3 03:55:04 CDT 2015


Thomas Faller <tfaller1 at gmx.de> writes:

> +static inline BOOL is_xp_or_older(void)
> +{
> +    DWORD version = GetVersion();
> +    if(version < 0x80000000){
> +        /* compare major */
> +        return (DWORD)(LOBYTE(LOWORD(version))) < 6;
> +    }
> +    return TRUE;
> +}

Do you actually have an app that depends on such a version check?

-- 
Alexandre Julliard
julliard at winehq.org



More information about the wine-devel mailing list