GetMailslotInfo (kernel32)
Last changed: -118.151.149.74

.
Summary

C# Signature:

[DllImport("kernel32.dll")]
static extern bool GetMailslotInfo(IntPtr hMailslot, IntPtr lpMaxMessageSize,
   IntPtr lpNextSize, IntPtr lpMessageCount, IntPtr lpReadTimeout);

or

[DllImport("kernel32.dll")]
static extern bool GetMailslotInfo(IntPtr hMailslot, out UInt32 lpMaxMessageSize,
   out UInt32 lpNextSize, out UInt32 lpMessageCount, out UInt32 lpReadTimeout);

(Each "out UInt32" parameter can be specified the type of "IntPtr" and be set IntPtr.Zero instead when not needed to obtain the value.)

User-Defined Types:

None.

Notes:

None.

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Alternative Managed API:

Do you know one? Please contribute it!

Documentation