Re: [4] snmpapi: Implement SnmpUtil{DbgPrint, IdsToA, OidToA, PrintAsnAny, PrintOid}.

2007-01-22 Thread Kuba Ober
On Monday 22 January 2007 08:13, Hans Leidekker wrote: > On Monday 22 January 2007 12:49, Alexandre Julliard wrote: > > 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

Re: [4] snmpapi: Implement SnmpUtil{DbgPrint, IdsToA, OidToA, PrintAsnAny, PrintOid}.

2007-01-22 Thread Hans Leidekker
On Monday 22 January 2007 12:49, Alexandre Julliard wrote: > 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). What's the alternative for sprintf? -Hans

Re: [4] snmpapi: Implement SnmpUtil{DbgPrint, IdsToA, OidToA, PrintAsnAny, PrintOid}.

2007-01-22 Thread Alexandre Julliard
Hans Leidekker <[EMAIL PROTECTED]> writes: > +/*** > + * SnmpUtilPrintOid(SNMPAPI.@) > + */ > +void WINAPI SnmpUtilPrintOid(AsnObjectIdentifier *oid) > +{ > +unsigned int i; > + > +TRACE("(%p)\n", oid); > + >