aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgingerBill <gingerBill@users.noreply.github.com>2020-11-22 01:22:18 +0000
committerGitHub <noreply@github.com>2020-11-22 01:22:18 +0000
commite0c028329bebc8ef34480b89e223edcea3fa99fe (patch)
tree942c5989664bbdfe798e849d167c5cd09a96ab06
parent740411f20713d2533073db4bc6a14f63a5f2a3db (diff)
parent58f768cb4f065a59e8d409ea99c212a58305204d (diff)
Merge pull request #786 from dbechrd/dbechrd-kernel32-typo
Update kernel32.odin
-rw-r--r--core/sys/win32/kernel32.odin4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/sys/win32/kernel32.odin b/core/sys/win32/kernel32.odin
index d5cefad94..ba3898730 100644
--- a/core/sys/win32/kernel32.odin
+++ b/core/sys/win32/kernel32.odin
@@ -8,12 +8,12 @@ foreign kernel32 {
@(link_name="CreateProcessA") create_process_a :: proc(application_name, command_line: cstring,
process_attributes, thread_attributes: ^Security_Attributes,
inherit_handle: Bool, creation_flags: u32, environment: rawptr,
- current_direcotry: cstring, startup_info: ^Startup_Info,
+ current_directory: cstring, startup_info: ^Startup_Info,
process_information: ^Process_Information) -> Bool ---;
@(link_name="CreateProcessW") create_process_w :: proc(application_name, command_line: Wstring,
process_attributes, thread_attributes: ^Security_Attributes,
inherit_handle: Bool, creation_flags: u32, environment: rawptr,
- current_direcotry: Wstring, startup_info: ^Startup_Info,
+ current_directory: Wstring, startup_info: ^Startup_Info,
process_information: ^Process_Information) -> Bool ---;
@(link_name="GetExitCodeProcess") get_exit_code_process :: proc(process: Handle, exit: ^u32) -> Bool ---;
@(link_name="ExitProcess") exit_process :: proc(exit_code: u32) ---;