Jump to content

DUMPUSERDATA: Difference between revisions

From EDM2
Created page with " typedef struct _DUMPUSERDATA { ULONG no_of_variables; DUMPDATAVAR [[DumpDataVar[MAX_USER_DUMPS]]]; } DUMPUSERDATA; typedef DUMPUSERDATA ..."
 
No edit summary
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
<pre>
  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;
</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.
 
[[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.