Share via


FILE_COPY_EXTERNAL (Windows CE 5.0)

Send Feedback

This structure contains the necessary input for FSCTL_COPY_EXTERNAL_START.

typedef struct _FILE_COPY_EXTERNAL {DWORDcbSize;DWORDdwDirection;PVOIDpUserData; DWORDcbUserDataSize;TCHARszCancelEventName[MAX_PATH];} FILE_COPY_EXTERNAL, *PFILE_COPY_EXTERNAL;

Members

  • cbSize
    Size of the structure.
  • dwDirection
    The following table shows the values for this member.
    Flag Description
    COPY_EXTERNAL_READ Read from the disk into the external device.
    COPY_EXTERNAL_WRITE Write to the disk from the external device.
  • pUserData
    Pointer to the user data needed for copy external in the block driver. May be set to NULL if not needed, in which case cbUserDataSize must be set to 0.
  • cbUserDataSize
    Size of the user data, in bytes.
  • szCancelEventName
    Name of the event that can be signaled to cancel the copy operation. If the even name has a length of 0, then the copy cannot be canceled.

Requirements

OS Versions: Windows CE 5.0 and later.
Header: Fsioctl.h

See Also

Copy External Structures | FSCTL_COPY_EXTERNAL_START

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.