Jump to content

HANDLELIST: Difference between revisions

From EDM2
No edit summary
Ak120 (talk | contribs)
mNo edit summary
 
Line 1: Line 1:
Node handle list structure.  
Node handle list structure.


== Type ==
== Type ==
Line 9: Line 9:
  typedef struct
  typedef struct


== Fields ==
==PHANDLELIST==
 
Pointer to Node handle list structure.
== Sample==
  typedef HANDLELIST *PHANDLELIST;
 
typedef struct _HANDLELIST {
  USHORT      cMaxHandles;
  USHORT      cHandles;
  HADAPTER    Handles[1];
} HANDLELIST;
  typedef   HANDLELIST   * PHANDLELIST ;


[[Category:Data type]]
[[Category:Data type]]

Latest revision as of 07:37, 21 February 2020

Node handle list structure.

Type

USHORT    cMaxHandles
USHORT    cHandles
HADAPTER  Handles[1]

C Declaration Method

typedef struct

PHANDLELIST

Pointer to Node handle list structure.

typedef HANDLELIST *PHANDLELIST;