Home | Info | Community | Development | myReactOS | Contact Us
[static]
Definition at line 764 of file oid.c.
Referenced by CRYPT_RemoveStringFromMultiString(), and CryptRegisterDefaultOIDFunction().
00765 { 00766 LPCWSTR ret = NULL, ptr; 00767 00768 for (ptr = multi; ptr && *ptr && !ret; ptr += lstrlenW(ptr) + 1) 00769 { 00770 if (!lstrcmpiW(ptr, toFind)) 00771 ret = ptr; 00772 } 00773 return ret; 00774 }