Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 347 of file registry.c.
Referenced by ITERATE_FindRelatedProducts(), msi_publish_install_properties(), and msi_publish_product_properties().
{ DWORD major, minor = 0, build = 0, version = 0; if (!p) return version; major = atoiW(p); p = strchrW(p, '.'); if (p) { minor = atoiW(p+1); p = strchrW(p+1, '.'); if (p) build = atoiW(p+1); } return MAKELONG(build, MAKEWORD(minor, major)); }