From: "Cliff Woolley" <[EMAIL PROTECTED]>
Sent: Wednesday, February 21, 2001 12:16 PM
> > -----Original Message-----
> > apr_status_t apr_get_usergroup_ids(apr_uid **user, apr_uid **group,
> > const char *name)
> > can be implemented very easily on win32.
> >
> > Don't think in terms of returning unix structures.
>
> I'm in the middle of doing exactly that for Unix (thanks Ryan for pointing me in
> the right direction)... but I haven't the foggiest idea how to do it for Win32.
> I'll commit what I have shortly with an APR_ENOTIMPL placeholder for Win32... if
> you could fill in that function I'd much appreciate it.
>
> PS: Can the prototype just use 'apr_uid_t *' and 'apr_gid_t *' instead of **?
> That works for Unix... does it work for Win32?
Yes... apr_uid_t et al are actually SID* objects, so, this will be fine.