Share via


WriteIoSpace (Compact 2013)

3/26/2014

This function writes to system I/O locations.

Syntax

VOID WriteIoSpace(
  ULONG address,
  ULONG data,
  PULONG size
);

Parameters

  • address
    [in] I/O address to write to.
  • data
    [in] Address of a variable that holds the data to be written.

    The variable must be at least as long as the size specified by the size parameter.

  • size
    [in] On input, address of a variable that contains the number of bytes to write.

    The value of this parameter must be 1, 2, or 4. On output, this parameter contains the actual number of bytes written.

Return Value

This function returns TRUE if the function call succeeds. Otherwise, the function returns FALSE.

Requirements

Header

wdbgexts_ce.h

Library

Developer Implemented

See Also

Reference

Debugger Extension Functions