diff options
| author | Tetralux <tetraluxonpc@gmail.com> | 2022-03-18 11:42:25 +0000 |
|---|---|---|
| committer | Tetralux <tetraluxonpc@gmail.com> | 2022-03-18 11:42:25 +0000 |
| commit | 4f9df50dc1a5f7a3fd2cc97cfbda4e57e48e905f (patch) | |
| tree | ac317f944757bb50dfde69bffa9fc1fc559338d6 /core | |
| parent | 50503cb40530d81eb13056128a1419522d6a21ed (diff) | |
Remove incorrect #packed from sys/windows.STARTUPINFO
Diffstat (limited to 'core')
| -rw-r--r-- | core/sys/windows/types.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/sys/windows/types.odin b/core/sys/windows/types.odin index 1407201d6..1ead165b4 100644 --- a/core/sys/windows/types.odin +++ b/core/sys/windows/types.odin @@ -578,7 +578,7 @@ PROCESS_INFORMATION :: struct { } // FYI: This is STARTUPINFOW, not STARTUPINFOA -STARTUPINFO :: struct #packed { +STARTUPINFO :: struct { cb: DWORD, lpReserved: LPWSTR, lpDesktop: LPWSTR, |