Ignore:
Timestamp:
Jul 7, 2001, 3:58:37 PM (24 years ago)
Author:
sandervl
Message:

Rewrote Atom functions + GetAtomNameW fix

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/kernel32/Fileio.cpp

    r6090 r6199  
    1 /* $Id: Fileio.cpp,v 1.50 2001-06-24 14:13:03 sandervl Exp $ */
     1/* $Id: Fileio.cpp,v 1.51 2001-07-07 13:58:36 sandervl Exp $ */
    22
    33/*
     
    250250{
    251251   if (lpft1 == NULL || lpft2 == NULL) {
    252   SetLastError(ERROR_INVALID_PARAMETER);
    253   return -1;
     252       SetLastError(ERROR_INVALID_PARAMETER);
     253       return -1;
    254254   }
    255255
    256256   if(lpft1->dwHighDateTime > lpft2->dwHighDateTime)
    257   return 1;
     257       return 1;
    258258
    259259   if(lpft1->dwHighDateTime < lpft2->dwHighDateTime)
    260   return -1;
     260       return -1;
    261261
    262262   if(lpft1->dwLowDateTime > lpft2->dwLowDateTime)
    263   return 1;
     263       return 1;
    264264
    265265   if(lpft1->dwLowDateTime < lpft2->dwLowDateTime)
    266   return -1;
     266       return -1;
    267267
    268268   return 0; //equal
Note: See TracChangeset for help on using the changeset viewer.