Jump to content

ADJINFO: Difference between revisions

From EDM2
No edit summary
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
Adjunct data structure.  
Adjunct data structure.


==Type==
==Type==
  HADAPTER     hAdapter;
  HADAPTER   hAdapter;
  USHORT       AdjIndex;
  USHORT     AdjIndex;


==C Declaration Method==
==C Declaration Method==
  typedef struct
  typedef struct
==Fields==
;AdjIndex (USHORT):Index of the adjunct structure found.


==Example Code==
==Example Code==
<PRE>
  typedef struct _ADJINFO {
  typedef struct _ADJINFO {
   HADAPTER    hAdapter;
   HADAPTER    hAdapter;
Line 14: Line 18:
  } ADJINFO;
  } ADJINFO;
   
   
  typedef   ADJINFO   * PADJIFO ;
  typedef ADJINFO *PADJIFO;
</PRE>


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