Jump to content

HANDLELIST: Difference between revisions

From EDM2
Ak120 (talk | contribs)
mNo edit summary
No edit summary
Line 10: Line 10:


== Fields ==
== Fields ==
== Sample==
typedef struct _HANDLELIST {
  USHORT      cMaxHandles;
  USHORT      cHandles;
  HADAPTER    Handles[1];
} HANDLELIST;
typedef  HANDLELIST  * PHANDLELIST ;


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

Revision as of 19:06, 3 August 2018

Node handle list structure.

Type

USHORT    cMaxHandles
USHORT    cHandles
HADAPTER  Handles[1]

C Declaration Method

typedef struct

Fields

Sample

typedef struct _HANDLELIST {
  USHORT       cMaxHandles;
  USHORT       cHandles;
  HADAPTER     Handles[1];
} HANDLELIST;

typedef   HANDLELIST   * PHANDLELIST ;