CARD_EVENT_MASK_PARMS
This structure contains event mask configurations passed to the CardGetEventMask and CardSetEventMask functions.
Syntax
typedef struct {
CARD_SOCKET_HANDLE hSocket;
UINT16 fAttributes;
UINT16 fEventMask;
} CARD_EVENT_MASK_PARMS, *PCARD_EVENT_MASK_PARMS;
Members
- hSocket
- Handle to a socket and function pair.
- fAttributes
- [IN] Specifies whether to return a global event mask or the event mask associated with the indicated socket and function pair. One of the following values:
- 0
- Global event mask.
- 1
- Specific event mask.
- fEventMask
- Specifies a bitmask of socket events. This member is input-only for CardSetEventMask and output-only for CardGetEventMask.
Remarks
This structure specifies global events or the events for a specified socket and function pair that a driver is interested in.
See Also
CardGetEventMask, CardSetEventMask