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
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
Node handle list structure.  
Node handle list structure.


== 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 ==
==PHANDLELIST==
 
Pointer to Node handle list structure.
== Remarks ==
typedef HANDLELIST *PHANDLELIST;
 
== Example Code ==
<PRE>
typedef struct _HANDLELIST {
  USHORT      cMaxHandles;
  USHORT      cHandles;
  HADAPTER    Handles[1];
} HANDLELIST;
 
typedef  HANDLELIST  * PHANDLELIST ;
 
</PRE>


[[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;