Jump to content

AHRESOURCE: Difference between revisions

From EDM2
Created page with "Adapter handle structure. == Type == ULONG NumResource; HRESOURCE hResource[1]; == C Declaration Method == typedef struct == Fields == == Remarks == == ..."
 
Ak120 (talk | contribs)
mNo edit summary
Line 1: Line 1:
Adapter handle structure.
Adapter handle structure


== Type ==
== Type ==
  ULONG         NumResource;
  ULONG     NumResource;
  HRESOURCE     hResource[1];
  [[HRESOURCE]]  hResource[1];
 
 
== C Declaration Method ==
== C Declaration Method ==
typedef struct
typedef struct


== Fields ==
== Fields ==
== Remarks ==
== Example Code ==
<PRE>
typedef struct _AHRESOURCE {
  ULONG        NumResource;
  HRESOURCE    hResource[1];
} AHRESOURCE;
typedef  AHRESOURCE  * PAHRESOURCE ;
</PRE>


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

Revision as of 11:03, 18 August 2017

Adapter handle structure

Type

ULONG      NumResource;
HRESOURCE  hResource[1];

C Declaration Method

typedef struct

Fields