DUMPUSERDATA: Difference between revisions
Appearance
No edit summary |
No edit summary |
||
Line 1: | Line 1: | ||
< | <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; | ||
</ | </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.