mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-28 18:30:06 +00:00
Merge pull request #4290 from flysand7/pipe-has-data
[os2/process]: Implement `process_exec`, and `pipe_has_data`
This commit is contained in:
@@ -381,6 +381,14 @@ foreign kernel32 {
|
||||
nDefaultTimeOut: DWORD,
|
||||
lpSecurityAttributes: LPSECURITY_ATTRIBUTES,
|
||||
) -> HANDLE ---
|
||||
PeekNamedPipe :: proc(
|
||||
hNamedPipe: HANDLE,
|
||||
lpBuffer: rawptr,
|
||||
nBufferSize: u32,
|
||||
lpBytesRead: ^u32,
|
||||
lpTotalBytesAvail: ^u32,
|
||||
lpBytesLeftThisMessage: ^u32,
|
||||
) -> BOOL ---
|
||||
CancelIo :: proc(handle: HANDLE) -> BOOL ---
|
||||
GetOverlappedResult :: proc(
|
||||
hFile: HANDLE,
|
||||
|
||||
Reference in New Issue
Block a user