(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.14

version 1.13, 2001/07/10 22:31:15 version 1.14, 2001/12/13 14:54:02
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)
   {
       //ATTN: Implement this method to get password from User with no echo
       //      This is used in cimuser CLI
       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();
   }
   
   String System::encryptPassword(const char* password, const char* salt)
   {
       //ATTN: Implement this method to encrypt the password
       //      This is used in User Manager
       return (String("dummy"));
   }
   
   Boolean System::isSystemUser(char* userName)
   {
       //ATTN: Implement this method to verify if user is vaild on the local system
       //      This is used in User Manager
       return true;
   }
   
   Boolean System::isPrivilegedUser()
   {
       // ATTN: Implement this method to verify if user executing the current
       //       command is a priviliged user
       //       This is used in cimuser CLI
       return true;
   }
   
 PEGASUS_NAMESPACE_END PEGASUS_NAMESPACE_END


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

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2