Scroll to navigation

NtCreateMailslotFile(3w) Wine API NtCreateMailslotFile(3w)

NAME

NtCreateMailslotFile (NTDLL.@)

SYNOPSIS

NTSTATUS NtCreateMailslotFile
(
PHANDLE pHandle,
ULONG DesiredAccess,
POBJECT_ATTRIBUTES attr,
PIO_STATUS_BLOCK IoStatusBlock,
ULONG CreateOptions,
ULONG MailslotQuota,
ULONG MaxMessageSize,
PLARGE_INTEGER TimeOut
)
 

DESCRIPTION

PARAMS

pHandle [Out] pointer to receive the handle created.
DesiredAccess [In] access mode (read, write, etc).
ObjectAttributes [In] fully qualified NT path of the mailslot.
IoStatusBlock [Out] receives completion status and other info.
CreateOptions [In] .
MailslotQuota [In] .
MaxMessageSize [In] .
TimeOut [In] .
 

RETURNS

An NT status code
 

IMPLEMENTATION

Declared in "winternl.h".
Implemented in "dlls/ntdll/file.c".
Debug channel "ntdll".
Oct 2012 Wine API