2 * Win32 kernel functions
4 * Copyright 1995 Martin von Loewis, Sven Verdoolaege, and Cameron Heide
10 #ifdef HAVE_SYS_ERRNO_H
11 #include <sys/errno.h>
15 #include <sys/types.h>
17 #ifdef HAVE_SYS_MMAN_H
27 #include "debugtools.h"
29 DEFAULT_DEBUG_CHANNEL(file);
31 /***********************************************************************
32 * ReadFileEx (KERNEL32.@)
34 BOOL WINAPI ReadFileEx(HFILE hFile, LPVOID lpBuffer, DWORD numtoread,
35 LPOVERLAPPED lpOverlapped,
36 LPOVERLAPPED_COMPLETION_ROUTINE lpCompletionRoutine)
39 FIXME("file %d to buf %p num %ld %p func %p stub\n",
40 hFile, lpBuffer, numtoread, lpOverlapped, lpCompletionRoutine);
41 SetLastError(ERROR_CALL_NOT_IMPLEMENTED);
45 /**************************************************************************
46 * SetFileAttributes16 (KERNEL.421)
48 BOOL16 WINAPI SetFileAttributes16( LPCSTR lpFileName, DWORD attributes )
50 return SetFileAttributesA( lpFileName, attributes );
54 /**************************************************************************
55 * SetFileAttributesA (KERNEL32.@)
57 BOOL WINAPI SetFileAttributesA(LPCSTR lpFileName, DWORD attributes)
60 DOS_FULL_NAME full_name;
62 if (!DOSFS_GetFullName( lpFileName, TRUE, &full_name ))
65 TRACE("(%s,%lx)\n",lpFileName,attributes);
66 if (attributes & FILE_ATTRIBUTE_NORMAL) {
67 attributes &= ~FILE_ATTRIBUTE_NORMAL;
69 FIXME("(%s):%lx illegal combination with FILE_ATTRIBUTE_NORMAL.\n",
70 lpFileName,attributes);
72 if(stat(full_name.long_name,&buf)==-1)
77 if (attributes & FILE_ATTRIBUTE_READONLY)
79 if(S_ISDIR(buf.st_mode))
81 WARN("FILE_ATTRIBUTE_READONLY ignored for directory.\n");
83 buf.st_mode &= ~0222; /* octal!, clear write permission bits */
84 attributes &= ~FILE_ATTRIBUTE_READONLY;
88 /* add write permission */
89 buf.st_mode |= 0600 | ((buf.st_mode & 044) >> 1);
91 if (attributes & FILE_ATTRIBUTE_DIRECTORY)
93 if (!S_ISDIR(buf.st_mode))
94 FIXME("SetFileAttributes expected the file '%s' to be a directory",
96 attributes &= ~FILE_ATTRIBUTE_DIRECTORY;
98 attributes &= ~(FILE_ATTRIBUTE_ARCHIVE|FILE_ATTRIBUTE_HIDDEN|FILE_ATTRIBUTE_SYSTEM);
100 FIXME("(%s):%lx attribute(s) not implemented.\n",
101 lpFileName,attributes);
102 if (-1==chmod(full_name.long_name,buf.st_mode))
105 MESSAGE("Wine ERROR: Couldn't set file attributes for existing file \"%s\". Check permissions or set VFAT \"quiet\" flag !\n", full_name.long_name);
112 /**************************************************************************
113 * SetFileAttributesW (KERNEL32.@)
115 BOOL WINAPI SetFileAttributesW(LPCWSTR lpFileName, DWORD attributes)
117 LPSTR afn = HEAP_strdupWtoA( GetProcessHeap(), 0, lpFileName );
118 BOOL res = SetFileAttributesA( afn, attributes );
119 HeapFree( GetProcessHeap(), 0, afn );