Author: sserapion Date: Fri Oct 31 19:30:48 2008 New Revision: 37122
URL: http://svn.reactos.org/svn/reactos?rev=37122&view=rev Log: Fix explorer build a bit.
Modified: branches/ros-amd64-bringup/reactos/base/shell/explorer/shell/fatfs.cpp branches/ros-amd64-bringup/reactos/base/shell/explorer/shell/fatfs.h
Modified: branches/ros-amd64-bringup/reactos/base/shell/explorer/shell/fatfs.cpp URL: http://svn.reactos.org/svn/reactos/branches/ros-amd64-bringup/reactos/base/s... ============================================================================== --- branches/ros-amd64-bringup/reactos/base/shell/explorer/shell/fatfs.cpp [iso-8859-1] (original) +++ branches/ros-amd64-bringup/reactos/base/shell/explorer/shell/fatfs.cpp [iso-8859-1] Fri Oct 31 19:30:48 2008 @@ -148,8 +148,8 @@ w32fd.nFileSizeLow = e.size;
// convert date/time attribute into FILETIME - const fdate& date = e.date; - const ftime& time = e.time; + const filedate& date = e.date; + const filetime& time = e.time; SYSTEMTIME stime; FILETIME ftime;
Modified: branches/ros-amd64-bringup/reactos/base/shell/explorer/shell/fatfs.h URL: http://svn.reactos.org/svn/reactos/branches/ros-amd64-bringup/reactos/base/s... ============================================================================== --- branches/ros-amd64-bringup/reactos/base/shell/explorer/shell/fatfs.h [iso-8859-1] (original) +++ branches/ros-amd64-bringup/reactos/base/shell/explorer/shell/fatfs.h [iso-8859-1] Fri Oct 31 19:30:48 2008 @@ -118,13 +118,13 @@ };
-struct ftime { +struct filetime { WORD sec2 : 5; WORD min : 6; WORD hour : 5; };
-struct fdate { +struct filedate { WORD day : 5; WORD month : 4; WORD year : 7; @@ -150,15 +150,15 @@ char ext[3]; char attr; char rsrvd[10]; - struct ftime time; - struct fdate date; + struct filetime time; + struct filedate date; WORD fclus; DWORD size; };
union DEntry { DEntry_E E; - BYTE B[8+3+1+10+sizeof(struct ftime)+sizeof(struct fdate)+sizeof(WORD)+sizeof(DWORD)]; + BYTE B[8+3+1+10+sizeof(struct filetime)+sizeof(struct filedate)+sizeof(WORD)+sizeof(DWORD)]; };
#pragma pack(pop)