Jump to content

RESOURCELIST: Difference between revisions

From EDM2
Created page with "Resource list structure. == Type == ULONG Count; RESOURCESTRUCT Resource[1]; == C Declaration Method == typedef struct == Fields == == Remarks == =..."
 
Ak120 (talk | contribs)
mNo edit summary
 
Line 1: Line 1:
Resource list structure.
Resource list structure


== Type ==
== Type ==
  ULONG             Count;
[[ULONG]]          Count;
  RESOURCESTRUCT     Resource[1];
RESOURCESTRUCT Resource[1];


== C Declaration Method ==
== C Declaration Method ==
Line 9: Line 9:


== Fields ==
== Fields ==
== Remarks ==
== Example Code ==
<PRE>
typedef struct _RESOURCELIST {
  ULONG              Count;
  RESOURCESTRUCT    Resource[1];
} RESOURCELIST;
typedef  RESOURCELIST  * PRESOURCELIST ;
</PRE>


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

Latest revision as of 10:57, 18 August 2017

Resource list structure

Type

ULONG           Count;
RESOURCESTRUCT  Resource[1];

C Declaration Method

typedef struct

Fields