Platform SDK: DLC/NetBIOS

LLC_DIR_READ_LOG_BUFFER

The LLC_DIR_READ_LOG_BUFFER union represents the log data returned by the LLC_DIR_READ_LOG command. The command returns either the adapter log, the direct interface log, or both logs. A pointer to this union is specified in the LLC_DIR_READ_LOG_PARMS structure.

typedef union {
  LLC_ADAPTER_LOG Adapter;
  LLC_DIRECT_LOG Dir;

  struct {
      LLC_ADAPTER_LOG Adapter;
      LLC_DIRECT_LOG Dir;
  } both;

} LLC_DIR_READ_LOG_BUFFER, *PLLC_DIR_READ_LOG_BUFFER;

Members

Adapter
Specifies the address of an LLC_ADAPTER_LOG structure representing the adapter log.
Dir
Specifies the address of an LLC_DIRECT_LOG structure representing the direct interface log.

Requirements

  Windows NT/2000: Requires Windows NT 3.1 or later.
  Windows 95/98: Requires Windows 95 or later.
  Header: Declared in Dlcapi.h.

See Also

The DLC Interface Overview, DLC Structures, AcsLan, LLC_ADAPTER_LOG, LLC_DIR_READ_LOG_PARMS, LLC_DIRECT_LOG