Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 1344 of file url.c.
{ PARSEDURLW base; DWORD res1; base.cbSize = sizeof(base); res1 = ParseURLW(pszUrl, &base); if (res1) return NULL; /* invalid scheme */ /* if scheme is file: then never return pointer */ if (strncmpW(base.pszProtocol, fileW, min(4,base.cchProtocol)) == 0) return NULL; /* Look for '#' and return its addr */ return strchrW(base.pszSuffix, '#'); }