DUMPUSERDATA: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
<code> | |||
typedef struct _DUMPUSERDATA { | typedef struct _DUMPUSERDATA { | ||
ULONG | ULONG no_of_variables; | ||
[[DUMPDATAVAR]] DumpDataVar[MAX_USER_DUMPS]; | [[DUMPDATAVAR]] DumpDataVar[MAX_USER_DUMPS]; | ||
} DUMPUSERDATA; | } DUMPUSERDATA; | ||
typedef | 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.