Type a page name and press Enter. You'll jump to the page if it exists, or you can create it if it doesn't.
To create a page in a module other than Structures, prefix the name with the module name and a period.
OVERLAPPED (Structures)
.
C# Definition:
struct OVERLAPPED {
public UIntPtr Internal;
public UIntPtr InternalHigh;
public uint Offset;
public uint OffsetHigh;
public IntPtr EventHandle;
}
VB Definition:
Public Structure OVERLAPPED
Public InternalLow as IntPtr
Public InternalHigh as IntPtr
Public OffsetHigh as Int32
Public OffsetLow as Int32
Public EventHandle as IntPtr
Structure OVERLAPPED
Public TODO
End Structure
User-Defined Field Types:
None.
Notes:
EventHandle: Specifies the handle to an event set to the signaled state when the operation is complete. The calling process must set this member either to zero or to a valid event handle before calling any overlapped functions.
InternalHigh:Specifies the length of the data transferred.
InternalLow :Specifies a system-dependent status.
OffsetHigh :Specifies the high word of the byte offset at which to start the transfer.
OffsetLow :Specifies a file position at which to start the transfer.
This structure is already defined as System.Threading.NativeOverlapped in the .NET Framework. It is not supported for the .NET Compact Framework.
Please edit this page!
Do you have...
helpful tips?
corrections to the existing content?
alternate definitions?
additional languages you want to include?
Select "Edit This Page" on the right hand toolbar and edit it! Or add new pages containing any supporting types needed.