cereadfile (rapi)
Last changed: Goldsmith-92.55.109.241

.
Summary
This function reads data from a file, starting at the position indicated by the file pointer. After the read operation has been completed, the file pointer is adjusted by the number of bytes actually read.

C# Signature:

[DllImport("rapi.dll", CharSet=CharSet.Unicode)]
[return: MarshalAs(UnmanagedType.Bool)]
public static extern bool CeReadFile(
    int hFile,
    byte[] lpBuffer,
    int nNumberOfbytesToRead,
    out int lpNumberOfbytesRead,
    int lpOverlapped);

User-Defined Types:

None.

Notes:

Function info on msdn at http://msdn.microsoft.com/en-us/library/aa917409.aspx

Tips & Tricks:

Please add some!

Sample Code:

Please add some!

Alternative Managed API:

Documentation
CeReadFile on MSDN