parrotcode: Win32 IO layer | |
Contents | C |
src/io/name.c - Win32 IO layer
This is the Parrot OS-specific IO layer for Win32 platforms.
Win32 System Programming, 2nd Edition.
static INTVAL flags_to_win32
static INTVAL PIO_win32_init
std*
IO handles.INTVAL PIO_win32_getblksize
PIO_BLKSIZE
.static ParrotIO *PIO_win32_open
CreateFile()
to open *spath
with the Win32 translation of flags
.static ParrotIO *PIO_win32_fdopen
ParrotIO
with fd
as its file descriptor.static INTVAL PIO_win32_close
CloseHandle()
to close *io
's file descriptor.static INTVAL PIO_win32_isatty
fd
is a console/tty.static INTVAL PIO_win32_flush
FlushFileBuffers()
to flush *io
's file descriptor.static size_t PIO_win32_read
ReadFile()
to read up to len
bytes from *io
's file descriptor to the memory starting at buffer
.static size_t PIO_win32_write
WriteFile()
to write len
bytes from the memory starting at buffer
to *io
's file descriptor.
Returns (size_t)-1
on failure.static PIOOFF_T PIO_win32_seek
SetFilePointer()
to move the read/write position of *io
's file descriptor to off
bytes relative to the location specified by whence
.static PIOOFF_T PIO_win32_tell
*io
's file descriptor.STRING *PIO_sockaddr_in
PIO_sockaddr_in()
is not part of the layer and so must be extern
.htons()
,
inet_aton()
,
etc.) and take this out of platform specific compilationstatic ParrotIO *PIO_win32_socket
socket()
to create a socket with the specified address family,
socket type and protocol number.static INTVAL PIO_win32_connect
*io
's socket to address *r
.static INTVAL PIO_win32_send
*s
to *io
's connected socket.static INTVAL PIO_win32_recv
**s
from *io
's connected socket.static INTVAL PIO_win32_bind
*io
's socket to the local address and port specified by *l
.static INTVAL PIO_win32_listen
STREAM
or SEQ
sockets.static ParrotIO *PIO_win32_accept
ParrotIO
socket.src/io/io_buf.c, src/io/io_passdown.c, src/io/io_stdio.c, src/io/io_unix.c, src/io/io.c, src/io/io_private.h.
Initially written by Melvin Smith.
|