Jump to content

DUMPUSERDATA: Difference between revisions

From EDM2
Ak120 (talk | contribs)
No edit summary
No edit summary
 
Line 1: Line 1:
<code>
<pre>
  typedef struct _DUMPUSERDATA {
  typedef struct _DUMPUSERDATA {
   ULONG          no_of_variables;
   ULONG          no_of_variables;
Line 6: Line 6:
   
   
  typedef DUMPUSERDATA *PDUMPUSERDATA;
  typedef DUMPUSERDATA *PDUMPUSERDATA;
</code>
</pre>
;no_of_variables (ULONG): Number of data/structures to be collected by the probe. Maximum number of variables that can be collected is 30.
;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]]

Latest revision as of 04:30, 28 May 2025

 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.