(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.33 and 1.34.4.2

version 1.33, 2003/11/12 18:21:34 version 1.34.4.2, 2004/04/26 20:21:21
Line 48 
Line 48 
 #include <io.h> #include <io.h>
 #include <conio.h> #include <conio.h>
 #include <direct.h> #include <direct.h>
 #include <sys/stat.h>  
 #include <sys/types.h> #include <sys/types.h>
 #include <windows.h> #include <windows.h>
 #include <process.h> #include <process.h>
Line 197 
Line 196 
  
 String System::getSystemCreationClassName () String System::getSystemCreationClassName ()
 { {
     //      return "CIM_ComputerSystem";
     //  ATTN: Implement this method to return the system creation class name  
     //  
     return String::EMPTY;  
 } }
  
 Uint32 System::lookupPort( Uint32 System::lookupPort(
Line 216 
Line 212 
     //     //
     if (  (serv = getservbyname(serviceName, TCP)) != NULL )     if (  (serv = getservbyname(serviceName, TCP)) != NULL )
     {     {
         localPort = serv->s_port;          localPort = ntohs(serv->s_port);
     }     }
     else     else
     {     {
Line 399 
Line 395 
   return (strcasecmp(_fullpath( full, path_slash, _MAX_PATH ), path_slash) == 0) ? true : false;   return (strcasecmp(_fullpath( full, path_slash, _MAX_PATH ), path_slash) == 0) ? true : false;
 } }
  
   // Changes file permissions on the given file.
   Boolean System::changeFilePermissions(const char* path, mode_t mode)
   {
       // ATTN: File permissions are not currently defined in Windows
       return true;
   }
   
 void System::openlog(const String ident) void System::openlog(const String ident)
 { {
     return;     return;


Legend:
Removed from v.1.33  
changed lines
  Added in v.1.34.4.2

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2