ADJINFO: Difference between revisions
Appearance
mNo edit summary |
No edit summary |
||
(One intermediate revision by one other user not shown) | |||
Line 7: | Line 7: | ||
==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 15: | Line 19: | ||
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;