Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 1018 of file oid.c.
Referenced by enum_store_callback(), and show_cert_stores().
01019 { 01020 unsigned int i; 01021 01022 for(i = 0; i < sizeof(LocalizedKeys)/sizeof(LPCWSTR); i++) 01023 { 01024 if(!lstrcmpiW(LocalizedKeys[i], pwszCryptName)) 01025 { 01026 return LocalizedNames[i]; 01027 } 01028 } 01029 01030 FIXME("No name for: %s - stub\n",debugstr_w(pwszCryptName)); 01031 return NULL; 01032 }