Hans Leidekker <[EMAIL PROTECTED]> writes:

> +/***********************************************************************
> + *      SnmpUtilPrintOid        (SNMPAPI.@)
> + */
> +void WINAPI SnmpUtilPrintOid(AsnObjectIdentifier *oid)
> +{
> +    unsigned int i;
> +
> +    TRACE("(%p)\n", oid);
> +
> +    if (!oid) return;
> +
> +    for (i = 0; i < oid->idLength; i++)
> +    {
> +        printf("%u", oid->ids[i]);
> +        if (i < oid->idLength - 1) printf(".");
> +    }
> +}

You don't want to use stdio functions in Wine. If apps really depend
on these functions you'd have to use msvcrt, but otherwise you can
simply use TRACE (or not implement them at all).

-- 
Alexandre Julliard
[EMAIL PROTECTED]


Reply via email to