Jump to content

ADJINFO: Difference between revisions

From EDM2
No edit summary
Ak120 (talk | contribs)
mNo edit summary
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==
Line 14: Line 14:
  } ADJINFO;
  } ADJINFO;
   
   
  typedef   ADJINFO   * PADJIFO ;
  typedef ADJINFO *PADJIFO;


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

Revision as of 08:28, 24 November 2019

Adjunct data structure.

Type

HADAPTER   hAdapter;
USHORT     AdjIndex;

C Declaration Method

typedef struct

Example Code

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

typedef ADJINFO *PADJIFO;