Re: [OLE #50] IRemUnknown Proxy/Stub Implementation

2005-01-26 Thread Alexandre Julliard
Vincent Béron <[EMAIL PROTECTED]> writes: > Are? Only dlls/kernel/lcformat.c contain easily spotted UTF-8 sequences > in a source file. It (in Julio César Gázquez's name) comes from the old > ole/ole2nls.c. Alexandre moved some functions to their current location, > and while copying over the auth

Re: [OLE #50] IRemUnknown Proxy/Stub Implementation

2005-01-25 Thread Vincent Béron
Le mar 25/01/2005 Ã 20:03, Bill Medland a Ãcrit : > On January 25, 2005 03:48 pm, Robert Shearman wrote: > > Vincent Bïon wrote: > > >Le mar 25/01/2005 ï11:51, Robert Shearman a ïrit : > > >>+ * Copyright 2001 Ove KÃven, TransGaming Technologies > > > > > >Not sure we want UTF-8 in the source file

Re: [OLE #50] IRemUnknown Proxy/Stub Implementation

2005-01-25 Thread Vincent Béron
Le mar 25/01/2005 à 18:48, Robert Shearman a écrit : > Vincent Béron wrote: > > >Le mar 25/01/2005 à 11:51, Robert Shearman a écrit : > > > > > >>+ * Copyright 2001 Ove KÃ¥ven, TransGaming Technologies > >> > >> > > > >Not sure we want UTF-8 in the source files... At least we don't have it

Re: [OLE #50] IRemUnknown Proxy/Stub Implementation

2005-01-25 Thread Bill Medland
On January 25, 2005 03:48 pm, Robert Shearman wrote: > Vincent Bïon wrote: > >Le mar 25/01/2005 ï11:51, Robert Shearman a ïrit : > >>+ * Copyright 2001 Ove KÃven, TransGaming Technologies > > > >Not sure we want UTF-8 in the source files... At least we don't have it > >(yet). > > I think it should

Re: [OLE #50] IRemUnknown Proxy/Stub Implementation

2005-01-25 Thread Robert Shearman
Vincent Béron wrote: Le mar 25/01/2005 à 11:51, Robert Shearman a écrit : + * Copyright 2001 Ove KÃ¥ven, TransGaming Technologies Not sure we want UTF-8 in the source files... At least we don't have it (yet). I think it should be made policy that anything in the comments should be UTF-

Re: [OLE #50] IRemUnknown Proxy/Stub Implementation

2005-01-25 Thread Vincent Béron
Le mar 25/01/2005 à 11:51, Robert Shearman a écrit : > Hi, > > This time without alloca. > > Rob > > Changelog: > Proxies/stubs for IRemUnknown methods, based on code written by Ove Kåven. > > > diff -u -p -N -r -x '*~' -x '.#*' -x CVS -x Makefile -x '*.o' -x '*.spec.def' > dlls/ole32_49

Re: [OLE #50] IRemUnknown Proxy/Stub Implementation

2005-01-25 Thread Alexandre Julliard
Robert Shearman <[EMAIL PROTECTED]> writes: > +memcpy(&cIids, buf, sizeof(USHORT)); > +buf += sizeof(USHORT); > +ir = (REMINTERFACEREF*)buf; > +pResults = alloca(cIids * sizeof(HRESULT)); You shouldn't use alloca, it's not portable, plus the space may not be available since the ap