Jump to content

HANDLELIST: Difference between revisions

From EDM2
Created page with "Node handle list structure. == Type == USHORT cMaxHandles USHORT cHandles HADAPTER Handles[1] == C Declaration Method == typedef struct == Fields ==..."
 
Ak120 (talk | contribs)
mNo edit summary
Line 2: Line 2:


== Type ==
== Type ==
  USHORT       cMaxHandles
  USHORT   cMaxHandles
  USHORT       cHandles
  USHORT   cHandles
  HADAPTER     Handles[1]
  HADAPTER Handles[1]
 
 
== C Declaration Method ==
== C Declaration Method ==
  typedef struct
  typedef struct


== Fields ==
== Fields ==
== Remarks ==
== Example Code ==
<PRE>
typedef struct _HANDLELIST {
  USHORT      cMaxHandles;
  USHORT      cHandles;
  HADAPTER    Handles[1];
} HANDLELIST;
typedef  HANDLELIST  * PHANDLELIST ;
</PRE>


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

Revision as of 11:02, 18 August 2017

Node handle list structure.

Type

USHORT    cMaxHandles
USHORT    cHandles
HADAPTER  Handles[1]

C Declaration Method

typedef struct

Fields