Jump to content

DUMPUSERDATA: Difference between revisions

From EDM2
No edit summary
Ak120 (talk | contribs)
No edit summary
Line 1: Line 1:
 
<code>
  typedef struct _DUMPUSERDATA {
  typedef struct _DUMPUSERDATA {
   ULONG          [[no_of_variables]];
   ULONG          no_of_variables;
   [[DUMPDATAVAR]]      DumpDataVar[MAX_USER_DUMPS];
   [[DUMPDATAVAR]]      DumpDataVar[MAX_USER_DUMPS];
  } DUMPUSERDATA;
  } DUMPUSERDATA;
   
   
  typedef   DUMPUSERDATA   * PDUMPUSERDATA ;
  typedef DUMPUSERDATA *PDUMPUSERDATA;
</code>
;no_of_variables (ULONG): Number of data/structures to be collected by the probe. Maximum number of variables that can be collected is 30.


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

Revision as of 16:43, 23 January 2018

typedef struct _DUMPUSERDATA {
  ULONG           no_of_variables;
  DUMPDATAVAR      DumpDataVar[MAX_USER_DUMPS];
} DUMPUSERDATA;

typedef DUMPUSERDATA *PDUMPUSERDATA;

no_of_variables (ULONG)
Number of data/structures to be collected by the probe. Maximum number of variables that can be collected is 30.