mirror of
https://github.com/c3lang/c3c.git
synced 2026-02-27 12:01:16 +00:00
Typo fixes (#2457)
* fix typos in comments and strings * fix typos in symbols (and some comments/strings) * fix typos in releasenotes.md --------- Co-authored-by: Christoffer Lerno <christoffer@aegik.com>
This commit is contained in:
@@ -35,7 +35,7 @@ bitstruct SubProcessOptions : int
|
||||
{
|
||||
// Combine stdout and stderr to the same file
|
||||
bool combined_stdout_stderr;
|
||||
// Child process should inhert env variables of parent process
|
||||
// Child process should inherit env variables of parent process
|
||||
bool inherit_environment;
|
||||
// Enable async reading of stdout/stderr before completion
|
||||
bool read_async;
|
||||
|
||||
@@ -36,7 +36,7 @@ enum Win32_FreeType : const Win32_DWORD
|
||||
MEM_COALESCE_PLACEHOLDERS = 0x00000001,
|
||||
MEM_PRESERVE_PLACEHOLDER = 0x00000002,
|
||||
}
|
||||
extern fn Win32_LPVOID virtualAlloc(Win32_LPVOID lpAddres, Win32_SIZE_T dwSize, Win32_AllocationType flAllocationType, Win32_Protect flProtect) @extern("VirtualAlloc");
|
||||
extern fn Win32_LPVOID virtualAlloc(Win32_LPVOID lpAddress, Win32_SIZE_T dwSize, Win32_AllocationType flAllocationType, Win32_Protect flProtect) @extern("VirtualAlloc");
|
||||
extern fn Win32_PVOID virtualAlloc2(Win32_HANDLE process, Win32_PVOID baseAddress, Win32_SIZE_T size, Win32_AllocationType allocationType, Win32_ULONG pageProtection, Win32_MEM_EXTENDED_PARAMETER* extendedParameters, Win32_ULONG parameterCount) @extern("VirtualAlloc2");
|
||||
extern fn Win32_BOOL virtualFree(Win32_LPVOID lpAddress, Win32_SIZE_T dwSize, Win32_FreeType dwFreeType) @extern("VirtualFree");
|
||||
extern fn Win32_BOOL virtualProtect(Win32_LPVOID lpAddress, Win32_SIZE_T dwSize, Win32_Protect flNewProtect, Win32_Protect* lpflOldProtect) @extern("VirtualProtect");
|
||||
|
||||
@@ -432,7 +432,7 @@ struct Win32_XMM_SAVE_AREA32
|
||||
Win32_UCHAR tagWord;
|
||||
Win32_UCHAR reserved1;
|
||||
Win32_USHORT errorOpcode;
|
||||
Win32_ULONG errrorOffset;
|
||||
Win32_ULONG errorOffset;
|
||||
Win32_USHORT errorSelector;
|
||||
Win32_USHORT reserved2;
|
||||
Win32_ULONG dataOffset;
|
||||
|
||||
Reference in New Issue
Block a user