Ryan Liptak 2fce991d2a Remove std.os.windows.QueryInformationFile (a wrapper of NtQueryInformationFile)
This function is unused, and the current implementation contains a few footguns:

- The current wrapper treats all possible errors as unexpected, even likely ones like BUFFER_OVERFLOW (which is returned if the size of the out_buffer is too small to contain all the variable-length members of the requested info, which the user may not actually care about)
- Each caller may need to handle errors differently, different errors might be possible depending on the FILE_INFORMATION_CLASS, etc, and making a wrapper that handles all of those different use-cases nicely seems like it'd be more trouble than it's worth (FILE_INFORMATION_CLASS has 76 different possible values)

If a wrapper for NtQueryInformationFile is wanted, then it should probably have wrapper functions per-use-case, like how QueryObjectName wraps NtQueryObject for the `ObjectNameInformation` class
2023-03-19 17:33:25 +01:00
..
2023-03-19 00:39:29 -04:00
2023-03-15 10:48:15 -07:00
2023-03-15 10:48:12 -07:00
2023-03-05 02:59:01 -05:00
2022-12-13 13:14:20 +02:00
2022-11-04 00:09:27 +03:30
2023-03-19 00:39:29 -04:00
2023-02-18 19:17:21 -07:00
2022-12-13 13:14:20 +02:00
2023-03-15 10:48:15 -07:00
2023-03-03 02:37:45 -05:00
2023-02-20 09:09:05 +11:00
2023-03-15 10:48:12 -07:00
2023-03-01 12:21:53 -05:00
2022-09-11 23:18:43 -04:00
2023-03-16 17:41:58 +02:00
2023-03-15 10:48:14 -07:00
2023-02-17 09:08:41 -07:00
2023-03-17 17:50:25 +01:00
2022-04-15 17:01:01 -05:00
2023-03-09 14:55:13 -06:00