search for: by_handle_file_information_str

Displaying 4 results from an estimated 4 matches for "by_handle_file_information_str".

2004 Dec 13
2
[LLVMdev] Which StatusInfo fields should have values set when dealing with win32 platform
Hi, Does any one have an idea which fields and how to the values correctly of the StatusInfo struct when dealing with the information returned in the BY_HANDLE_FILE_INFORMATION struct (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/fileio/base/by_handle_file_information_str.asp) from windows instead of the unix stuff in getStatusInfo: --- (excerpt start) ------------- info.fileSize = buf.st_size; info.modTime.fromEpochTime(buf.st_mtime); info.mode = buf.st_mode; info.user = buf.st_uid; info.group = buf.st_gid; info.isDir = S_ISDIR(buf.st_mode); if (inf...
2004 Dec 14
2
[LLVMdev] Which StatusInfo fields should have values set when dealing with win32 platform
...t;> >>Does any one have an idea which fields and how to the values correctly of >>the StatusInfo struct when dealing with the information returned in the >>BY_HANDLE_FILE_INFORMATION struct >>(http://msdn.microsoft.com/library/default.asp?url=/library/en-us/fileio/base/by_handle_file_information_str.asp) >>from windows instead of the unix stuff in getStatusInfo: >> >>--- (excerpt start) ------------- >> info.fileSize = buf.st_size; >> info.modTime.fromEpochTime(buf.st_mtime); >> info.mode = buf.st_mode; >> info.user = buf.st_uid; >> info.gr...
2004 Dec 13
0
[LLVMdev] Which StatusInfo fields should have values set when dealing with win32 platform
...te: > Hi, > > Does any one have an idea which fields and how to the values correctly of > the StatusInfo struct when dealing with the information returned in the > BY_HANDLE_FILE_INFORMATION struct > (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/fileio/base/by_handle_file_information_str.asp) > from windows instead of the unix stuff in getStatusInfo: > > --- (excerpt start) ------------- > info.fileSize = buf.st_size; > info.modTime.fromEpochTime(buf.st_mtime); > info.mode = buf.st_mode; > info.user = buf.st_uid; > info.group = buf.st_gid; >...
2004 Dec 14
0
[LLVMdev] Which StatusInfo fields should have values set when dealing with win32 platform
...Does any one have an idea which fields and how to the values correctly of > >>the StatusInfo struct when dealing with the information returned in the > >>BY_HANDLE_FILE_INFORMATION struct > >>(http://msdn.microsoft.com/library/default.asp?url=/library/en-us/fileio/base/by_handle_file_information_str.asp) > >>from windows instead of the unix stuff in getStatusInfo: > >> > >>--- (excerpt start) ------------- > >> info.fileSize = buf.st_size; > >> info.modTime.fromEpochTime(buf.st_mtime); > >> info.mode = buf.st_mode; > >> info.u...