Jump to content

PRPORTINFO1

From EDM2
Revision as of 19:25, 25 April 2025 by Martini (talk | contribs) (Created page with "Port information structure (level 1). == Type == struct == C Declaration Method == typedef == Example Code == <pre> typedef struct _PRPORTINFO1 { PSZ pszPortName; Name of the port.: PSZ pszPortDriverName; Name of the port driver.: PSZ pszPortDriverPathName; Full path name of the port driver.: } PRPORTINFO1; typedef PRPORTINFO1 * PPRPORTINFO1 ; </pre> Category:Data type")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Port information structure (level 1).

Type

struct

C Declaration Method

typedef

Example Code

typedef struct _PRPORTINFO1 {
  PSZ     pszPortName;            /* Name of the port. */
  PSZ     pszPortDriverName;      /* Name of the port driver. */
  PSZ     pszPortDriverPathName;  /* Full path name of the port driver. */
} PRPORTINFO1;

typedef   PRPORTINFO1   * PPRPORTINFO1 ;