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 == =..."
(No difference)

Revision as of 17:05, 17 August 2017

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 ;