Share via


IOCTL_SMARTCARD_IS_PRESENT (Windows CE 5.0)

Send Feedback

This code is used to wait for card insertion. The operation either returns immediately with STATUS_SUCCESS, which indicates that a card is already in the reader, or it blocks until a card is inserted.

Parameters

  • dwOpenData
    [in] Handle returned from a call to the smart card reader driver's XXX_Open (Device Manager) function.
  • dwCode
    [in] Specifies this code.
  • pBufIn
    Ignored.
  • dwLenIn
    Ignored.
  • pBufOut
    Ignored.
  • dwLenOut
    [out] Must be set to 0.
  • pdwActualOut
    [out] Must be set to 0.

Return Values

One of the following status values.

Status Description
STATUS_SUCCESS There is already a smart card in the card reader.
STATUS_CANCELLED The card reader was closed or the IOCTL_SMARTCARD_CANCEL_BLOCKING code was issued.
STATUS_DEVICE_BUSY Event tracking is already active.
STATUS_INVALID_DEVICE_STATE The card reader cannot accept the request.

Remarks

Smart card reader drivers return Windows NT status values, rather than Win32 error values, as the return values from the driver's callback function.

Requirements

OS Versions: Windows CE 3.0 and later.
Header: Winsmcrd.h.

See Also

XXX_Open (Device Manager)

Send Feedback on this topic to the authors

Feedback FAQs

© 2006 Microsoft Corporation. All rights reserved.