Jump to content

RESOURCELIST

From EDM2
Revision as of 17:05, 17 August 2017 by Martini (talk | contribs) (Created page with "Resource list structure. == Type == ULONG Count; RESOURCESTRUCT Resource[1]; == C Declaration Method == typedef struct == Fields == == Remarks == =...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Resource list structure.

Type

 ULONG              Count;
 RESOURCESTRUCT     Resource[1];

C Declaration Method

typedef struct

Fields

Remarks

Example Code

typedef struct _RESOURCELIST {
  ULONG              Count;
  RESOURCESTRUCT     Resource[1];
} RESOURCELIST;

typedef   RESOURCELIST   * PRESOURCELIST ;