mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 21:13:52 +00:00
c8719ee865
This fixes the following compiler errors: ../sdk/lib/crt/stdio/stat64.c:7:13: error: inline function 'release_ioinfo' declared but never defined [-Werror] inline void release_ioinfo(ioinfo *info); ^~~~~~~~~~~~~~ ../sdk/lib/crt/stdio/stat64.c:6:16: error: inline function 'get_ioinfo' declared but never defined [-Werror] inline ioinfo* get_ioinfo(int fd); ^~~~~~~~~~ ../sdk/lib/crt/stdio/file.c:186:5: error: 'init_ioinfo_cs' is static but used in inline function 'get_ioinfo' which is not static [-Werror] init_ioinfo_cs(ret); ^~~~~~~~~~~~~~ ../sdk/lib/crt/stdio/file.c:183:19: error: 'get_ioinfo_nolock' is static but used in inline function 'get_ioinfo' which is not static [-Werror] ioinfo *ret = get_ioinfo_nolock(fd);
97 lines
2.8 KiB
C
97 lines
2.8 KiB
C
/*
|
|
* COPYRIGHT: LGPL, See LGPL.txt in the top level directory
|
|
* PROJECT: ReactOS CRT library
|
|
* FILE: lib/sdk/crt/time/futime.c
|
|
* PURPOSE: Implementation of _futime
|
|
* PROGRAMERS: Wine team
|
|
*/
|
|
|
|
/*
|
|
* msvcrt.dll file functions
|
|
*
|
|
* Copyright 1996,1998 Marcus Meissner
|
|
* Copyright 1996 Jukka Iivonen
|
|
* Copyright 1997,2000 Uwe Bonnes
|
|
* Copyright 2000 Jon Griffiths
|
|
* Copyright 2004 Eric Pouech
|
|
* Copyright 2004 Juan Lang
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*
|
|
* TODO
|
|
* Use the file flag hints O_SEQUENTIAL, O_RANDOM, O_SHORT_LIVED
|
|
*/
|
|
|
|
#include <precomp.h>
|
|
#define RC_INVOKED 1 // to prevent inline functions
|
|
#include <time.h>
|
|
#include <sys/utime.h>
|
|
#include "bitsfixup.h"
|
|
#include <internal/wine/msvcrt.h>
|
|
|
|
ioinfo* get_ioinfo(int fd);
|
|
void release_ioinfo(ioinfo *info);
|
|
|
|
/******************************************************************************
|
|
* \name _futime
|
|
* \brief Set a file's modification time.
|
|
* \param [out] ptimeb Pointer to a structure of type struct _timeb that
|
|
* receives the current time.
|
|
* \sa http://msdn.microsoft.com/en-us/library/95e68951.aspx
|
|
*/
|
|
int
|
|
_futime(int fd, struct _utimbuf *filetime)
|
|
{
|
|
ioinfo *info = get_ioinfo(fd);
|
|
FILETIME at, wt;
|
|
|
|
if (info->handle == INVALID_HANDLE_VALUE)
|
|
{
|
|
release_ioinfo(info);
|
|
return -1;
|
|
}
|
|
|
|
if (!filetime)
|
|
{
|
|
time_t currTime;
|
|
_time(&currTime);
|
|
RtlSecondsSince1970ToTime((ULONG)currTime,
|
|
(LARGE_INTEGER *)&at);
|
|
wt = at;
|
|
}
|
|
else
|
|
{
|
|
RtlSecondsSince1970ToTime((ULONG)filetime->actime,
|
|
(LARGE_INTEGER *)&at);
|
|
if (filetime->actime == filetime->modtime)
|
|
{
|
|
wt = at;
|
|
}
|
|
else
|
|
{
|
|
RtlSecondsSince1970ToTime((ULONG)filetime->modtime,
|
|
(LARGE_INTEGER *)&wt);
|
|
}
|
|
}
|
|
|
|
if (!SetFileTime(info->handle, NULL, &at, &wt))
|
|
{
|
|
release_ioinfo(info);
|
|
_dosmaperr(GetLastError());
|
|
return -1 ;
|
|
}
|
|
release_ioinfo(info);
|
|
return 0;
|
|
}
|