Jump to content

HANDLELIST

From EDM2
Revision as of 16:54, 17 August 2017 by Martini (talk | contribs) (Created page with "Node handle list structure. == Type == USHORT cMaxHandles USHORT cHandles HADAPTER Handles[1] == C Declaration Method == typedef struct == Fields ==...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Node handle list structure.

Type

USHORT       cMaxHandles
USHORT       cHandles
HADAPTER     Handles[1]
  

C Declaration Method

typedef struct

Fields

Remarks

Example Code

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

typedef   HANDLELIST   * PHANDLELIST ;