Re: [07/10] wintrust: Implement CryptCATEnumerateMember.

2008-12-22 Thread Alexandre Julliard
Hans Leidekker writes: > On Monday 22 December 2008 14:55:29 Alexandre Julliard wrote: > >> > +static BOOL guid_from_string(const WCHAR *str, GUID *guid) >> > +{ >> > +unsigned int i = 0; >> > +unsigned char *b = (unsigned char *)guid; >> > +const WCHAR *p = str; >> >> Please call on

Re: [07/10] wintrust: Implement CryptCATEnumerateMember.

2008-12-22 Thread Hans Leidekker
On Monday 22 December 2008 14:55:29 Alexandre Julliard wrote: > > +static BOOL guid_from_string(const WCHAR *str, GUID *guid) > > +{ > > +unsigned int i = 0; > > +unsigned char *b = (unsigned char *)guid; > > +const WCHAR *p = str; > > Please call one of the existing functions for thi

Re: [07/10] wintrust: Implement CryptCATEnumerateMember.

2008-12-22 Thread Alexandre Julliard
Hans Leidekker writes: > @@ -496,12 +496,208 @@ BOOL WINAPI CryptCATClose(HANDLE hCatalog) > return TRUE; > } > > +static BOOL guid_from_string(const WCHAR *str, GUID *guid) > +{ > +unsigned int i = 0; > +unsigned char *b = (unsigned char *)guid; > +const WCHAR *p = str; Plea