r=dougt, a=brendan
OS/2 bringup - DLL names need to be 8.3 on OS/2
This commit is contained in:
mkaply%us.ibm.com 2000-07-05 13:53:12 +00:00
parent 266597fe31
commit 40b51de15a

View File

@ -134,8 +134,13 @@ SetupFactories(void)
{
nsresult err;
// seed the repository (hack)
#ifdef XP_OS2
err = nsComponentManager::RegisterComponent(kIMyServiceCID, NULL, NULL, "rel:MyServce.dll",
PR_TRUE, PR_FALSE);
#else
err = nsComponentManager::RegisterComponent(kIMyServiceCID, NULL, NULL, "rel:MyService.dll",
PR_TRUE, PR_FALSE);
#endif
NS_ASSERTION(err == NS_OK, "failed to register my factory");
}