Jump to content

ADJINFO: Difference between revisions

From EDM2
Ak120 (talk | contribs)
mNo edit summary
No edit summary
 
Line 8: Line 8:
  typedef struct
  typedef struct


==Fields==
;AdjIndex (USHORT):Index of the adjunct structure found.
==Example Code==
<PRE>
  typedef struct _ADJINFO {
  typedef struct _ADJINFO {
   HADAPTER    hAdapter;
   HADAPTER    hAdapter;
Line 14: Line 19:
   
   
  typedef ADJINFO *PADJIFO;
  typedef ADJINFO *PADJIFO;
 
</PRE>
==Fields==
;AdjIndex (USHORT):Index of the adjunct structure found.


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

Latest revision as of 17:20, 2 May 2025

Adjunct data structure.

Type

HADAPTER   hAdapter;
USHORT     AdjIndex;

C Declaration Method

typedef struct

Fields

AdjIndex (USHORT)
Index of the adjunct structure found.

Example Code

 typedef struct _ADJINFO {
   HADAPTER     hAdapter;
   USHORT       AdjIndex;
 } ADJINFO;
 
 typedef ADJINFO *PADJIFO;