Share via


READ_PORT_BUFFER_UCHAR

This function reads a number of bytes from the specified port I/O address into a buffer.

VOID READ_PORT_BUFFER_UCHAR(
  PUCHAR Port, 
  PUCHAR Buffer, 
  ULONG Count 
);

Parameters

  • Port
    [in] Pointer to the port that must be a mapped memory range in I/O space.
  • Buffer
    [out] Pointer to a buffer to read UCHAR values into.
  • Count
    [in] Number of bytes to read into the buffer.

Return Values

None.

Remarks

The size of the buffer must be large enough to contain at least the specified number of bytes.

The Port parameter refers to device hardware mapped into the CPU's address space using other CEDDK functions.

Requirements

OS Versions: Windows CE 2.10 and later.
Header: CEDDK.h.
Link Library: CEDDK.lib.

See Also

Implementing CEDDK.dll

Last updated on Wednesday, April 13, 2005

© 2005 Microsoft Corporation. All rights reserved.