Sha256: 09b4c113b1002b98ec4835a4c98db8329b085bc4a0115c568141c9bfd5aee428

Contents?: true

Size: 1.11 KB

Versions: 136

Compression:

Stored size: 1.11 KB

Contents

/***************************************************************
  utime.c
***************************************************************/

#include <windows.h>
#include <sys/utime.h>
#include "..\wince.h" /* for wce_mbtowc */


#ifdef _WIN32_WCE
  #if _WIN32_WCE < 300
    #define Int32x32To64(a, b) ((LONGLONG)((LONG)(a)) * (LONGLONG)((LONG)(b)))
/*    #define Int32x32To64(a, b) ((__int64)((LONG)(a)) * (__int64)((LONG)(b))) */
  #endif
#endif

int utime(const char *f, struct utimbuf *t)
{
	HANDLE h;
	FILETIME atime={0}, mtime={0};
	__int64 time64;
	BOOL rc;
	wchar_t *w;

	w = wce_mbtowc(f);
	h = CreateFileW(w, GENERIC_WRITE, 
			FILE_SHARE_READ|FILE_SHARE_WRITE,
			NULL, OPEN_EXISTING, 0, 0);
	free(w);

	if( h==INVALID_HANDLE_VALUE )
		return -1;

	time64 = Int32x32To64(t->actime, 10000000) + 116444736000000000;
	atime.dwLowDateTime  = (DWORD)time64;
	atime.dwHighDateTime = (DWORD)(time64 >> 32);
	time64 = Int32x32To64(t->modtime, 10000000) + 116444736000000000;
	mtime.dwLowDateTime  = (DWORD)time64;
	mtime.dwHighDateTime = (DWORD)(time64 >> 32);

	rc = SetFileTime(h, NULL, &atime, &mtime);
	return rc==TRUE ? 0 : -1;
}

Version data entries

136 entries across 136 versions & 2 rubygems

Version Path
rhodes-7.6.0 platform/shared/ruby/wince/sys/utime.c
rhodes-7.5.1 platform/shared/ruby/wince/sys/utime.c
rhodes-7.4.1 platform/shared/ruby/wince/sys/utime.c
rhodes-7.1.17 platform/shared/ruby/wince/sys/utime.c
rhodes-6.2.0 platform/shared/ruby/wince/sys/utime.c
rhodes-6.0.11 platform/shared/ruby/wince/sys/utime.c
rhodes-5.5.18 platform/shared/ruby/wince/sys/utime.c
rhodes-5.5.17 platform/shared/ruby/wince/sys/utime.c
rhodes-5.5.15 platform/shared/ruby/wince/sys/utime.c
rhodes-5.5.0.22 platform/shared/ruby/wince/sys/utime.c
rhodes-5.5.2 platform/shared/ruby/wince/sys/utime.c
rhodes-5.5.0.7 platform/shared/ruby/wince/sys/utime.c
rhodes-5.5.0.3 platform/shared/ruby/wince/sys/utime.c
rhodes-5.5.0 platform/shared/ruby/wince/sys/utime.c
tauplatform-1.0.3 platform/shared/ruby/wince/sys/utime.c
tauplatform-1.0.2 platform/shared/ruby/wince/sys/utime.c
tauplatform-1.0.1 platform/shared/ruby/wince/sys/utime.c
rhodes-3.5.1.12 platform/shared/ruby/wince/sys/utime.c
rhodes-3.3.5 platform/shared/ruby/wince/sys/utime.c
rhodes-3.4.2 platform/shared/ruby/wince/sys/utime.c