LLC_DIR_SET_EFLAG_PARMS

The LLC_DIR_SET_EFLAG_PARMS structure is the DLC parameter table for the LLC_DIR_SET_EXCEPTION_FLAGS command. You pass a pointer to this structure using the pParameterTable member of the CCB_PARMS union.

typedef struct {
    ULONG ulAdapterCheckFlag;
    ULONG ulNetworkStatusFlag;
    ULONG ulPcErrorFlag;
    ULONG ulSystemActionFlag;
} LLC_DIR_SET_EFLAG_PARMS, *PLLC_DIR_SET_EFLAG_PARMS;
 

Members

ulAdapterCheckFlag
User notification flag for adapter-check exceptions. If this member is zero, the application will not be notified of these exceptions.
ulNetworkStatusFlag
User notification flag for network-status exceptions. If this member is zero, the application will not be notified of these exceptions.
ulPcErrorFlag
User notification flag for workstation errors. If this member is zero, the application will not be notified of these exceptions.
ulSystemActionFlag
User notification flag for system-action exceptions. If this member is zero, the application will not be notified of these exceptions.

Remarks

The flag members are used to request that information relating to exception events be passed to the application. You should issue this command immediately after issuing the LLC_DIR_OPEN_ADAPTER command if the application is to be notified of any exception conditions. Then issue an LLC_READ command, setting the hCompletionEvent member of the LLC_CCB structure. Whenever an exception occurs, this command will be executed and the event error code will be returned from the protocol driver.

QuickInfo

  Windows NT: Requires version 3.1 or later.
  Windows: Requires Windows 95 or later.
  Windows CE: Unsupported.
  Header: Declared in dlcapi.h.

See Also

The DLC Interface Overview, DLC Structures, AcsLan, CCB_PARMS