(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.40 and 1.41

version 1.40, 2004/07/19 08:46:23 version 1.41, 2004/07/23 07:51:25
Line 32 
Line 32 
 // Modified By: Dave Rosckes (rosckes@us.ibm.com) // Modified By: Dave Rosckes (rosckes@us.ibm.com)
 //              Terry Martin, Hewlett-Packard Company (terry.martin@hp.com) //              Terry Martin, Hewlett-Packard Company (terry.martin@hp.com)
 //              Amit K Arora, IBM (amita@in.ibm.com) for Bug#1428 //              Amit K Arora, IBM (amita@in.ibm.com) for Bug#1428
   //                              Seema Gupta (gseema@in.ibm.com) for Bug#1617
 // //
 //%///////////////////////////////////////////////////////////////////////////// //%/////////////////////////////////////////////////////////////////////////////
  
Line 55 
Line 56 
  
 PEGASUS_NAMESPACE_BEGIN PEGASUS_NAMESPACE_BEGIN
  
 #define ACCESS_EXISTS 0  #define PEGASUS_ACCESS_EXISTS 0
 #define ACCESS_WRITE 2  #define PEGASUS_ACCESS_WRITE 2
 #define ACCESS_READ 4  #define PEGASUS_ACCESS_READ 4
 #define ACCESS_READ_AND_WRITE 6  #define PEGASUS_ACCESS_READ_AND_WRITE 6
  
 #define PW_BUFF_LEN 65 #define PW_BUFF_LEN 65
  
Line 93 
Line 94 
  
 Boolean System::exists(const char* path) Boolean System::exists(const char* path)
 { {
     return _access(path, ACCESS_EXISTS) == 0;      return _access(path, PEGASUS_ACCESS_EXISTS) == 0;
 } }
  
 Boolean System::canRead(const char* path) Boolean System::canRead(const char* path)
 { {
     return _access(path, ACCESS_READ) == 0;      return _access(path, PEGASUS_ACCESS_READ) == 0;
 } }
  
 Boolean System::canWrite(const char* path) Boolean System::canWrite(const char* path)
 { {
     return _access(path, ACCESS_WRITE) == 0;      return _access(path, PEGASUS_ACCESS_WRITE) == 0;
 } }
  
 Boolean System::getCurrentDirectory(char* path, Uint32 size) Boolean System::getCurrentDirectory(char* path, Uint32 size)


Legend:
Removed from v.1.40  
changed lines
  Added in v.1.41

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2