(file) Return to SystemWindows.cpp CVS log (file) (dir) Up to [Pegasus] / pegasus / src / Pegasus / Common

Diff for /pegasus/src/Pegasus/Common/SystemWindows.cpp between version 1.13 and 1.13.2.3

version 1.13, 2001/07/10 22:31:15 version 1.13.2.3, 2001/11/20 22:21:40
Line 22 
Line 22 
 // //
 // Author: Mike Brasher (mbrasher@bmc.com) // Author: Mike Brasher (mbrasher@bmc.com)
 // //
 // Modified By:  // Modified By: Sushma Fernandes (sushma_fernandes@hp.com)
   //
   //              Nag Boranna, Hewlett-Packard Company (nagaraja_boranna@hp.com)
 // //
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
Line 141 
Line 143 
     return DynamicLibraryHandle(LoadLibrary(fileName));     return DynamicLibraryHandle(LoadLibrary(fileName));
 } }
  
   void System::unloadDynamicLibrary(DynamicLibraryHandle libraryHandle)
   {
           FreeLibrary(HINSTANCE(libraryHandle));
   }
   
 String System::dynamicLoadError(void) { String System::dynamicLoadError(void) {
 return String(); return String();
 } }
Line 163 
Line 170 
     return hostname;     return hostname;
 } }
  
   String System::getPassword(const char* prompt)
   {
       //
       // This function needs to be implemented
       // Return a dummy string for now
       //
       String password("dummy");
   
       return password;
   }
   
   String System::getCurrentLoginName()
   {
       //ATTN: Implement this method to get the current login user name
       //      This is used in local authentication.
   
       return String();
   }
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


Legend:
Removed from v.1.13  
changed lines
  Added in v.1.13.2.3

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2