Ryan Liptak 4e078941d0 os.windows.OpenFile: Add USER_MAPPED_FILE as a possible error
Ran into this when using a program that uses CreateFileMapping and then trying to call `std.fs.createFile` on the mapped file. More info can be found here:

https://stackoverflow.com/questions/41844842/when-error-1224-error-user-mapped-file-occurs

Before:

```
error.Unexpected NTSTATUS=0xc0000243
C:\Users\Ryan\Programming\Zig\zig\lib\std\os\windows.zig:138:40: 0x7ff74e957466 in OpenFile (test.exe.obj)
        else => return unexpectedStatus(rc),
                                       ^
```

After:

```
FAIL (AccessDenied)
C:\Users\Ryan\Programming\Zig\zig\lib\std\os\windows.zig:137:30: 0x7ff7f5b776ea in OpenFile (test.exe.obj)
        .USER_MAPPED_FILE => return error.AccessDenied,
                             ^
```
2022-11-28 18:56:11 +01:00
..
2022-11-15 23:23:27 +02:00
2022-11-18 19:22:42 +00:00
2022-11-28 01:23:39 -05:00
2022-10-30 01:09:31 -07:00
2022-10-06 21:22:20 +03:00
2022-11-04 00:09:27 +03:30
2022-11-13 17:36:56 +02:00
2022-08-23 21:11:02 -07:00
2022-01-07 00:06:06 -05:00
2022-09-11 23:18:43 -04:00
2022-11-26 22:06:15 +02:00
2022-11-12 09:40:40 +01:00
2022-11-07 02:46:19 +01:00
2022-11-04 00:09:27 +03:30
2022-11-23 19:17:58 +01:00
2022-11-26 22:06:15 +02:00
2022-11-04 00:09:27 +03:30
2022-04-15 17:01:01 -05:00
2022-11-18 19:22:42 +00:00