Jump to content

CONFIGPARMS: Difference between revisions

From EDM2
No edit summary
Ak120 (talk | contribs)
m avoids overlinking to orphaned stub pages
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
<code>
  typedef struct _CONFIGPARMS {
  typedef struct _CONFIGPARMS {
   ULONG              [[packet_size]];
   ULONG              packet_size;
   ULONG              [[packet_revision_number]];
   ULONG              packet_revision_number;
   ULONG              [[dump_file_wrap]];
   ULONG              dump_file_wrap;
   UniChar            *[[dump_file_directory_name_length]];
   UniChar            *dump_file_directory_name_length;
   PVOID              [[dump_file_directory_name]];
   PVOID              dump_file_directory_name;
   ULONG              [[no_of_probe_disabled_products]];
   ULONG              no_of_probe_disabled_products;
   [[PDISABLEPRODUCT]]     [[pDisableProduct]];
   PDISABLEPRODUCT    pDisableProduct;
   ULONG              [[message_pop_up]];
   ULONG              message_pop_up;
  } CONFIGPARMS;
  } CONFIGPARMS;
   
   
  typedef   CONFIGPARMS   * PCONFIGPARMS ;
  typedef CONFIGPARMS *PCONFIGPARMS;
</code>
;packet_size (ULONG):Size, in bytes, of this packet.
;packet_revision_number (ULONG): A long integer value that indicates the revision level of the parameter packet. Use one of the following values defined in FFST.H:
:;UniCode parameter packet.
::Use CONFIGPARMS_OS2_UNICODE to specify the UniCode parameter packet.
:;ASCII parameter packet.
::Use CONFIGPARMS_OS2_ASCII to specify the ASCII parameter packet.
;dump_file_wrap (ULONG): Indicates whether the dumps captured by FFST are to be wrapped or not.
:If dump wrap is set to on then dumps will be wrapped when the specified maximum size is reached. If dump wrap is set to off when the specified maximum size is reached then FFST will not create any new dump files.
:May be one of the following values:
:* Set dump wrap to off
:* Set dump wrap to on (system default)
;dump_file_directory_name_length (ULONG): Length, in bytes, of the dump directory name.
;dump_file_directory_name (PVOID): Pointer to the fully-qualified dump directory name.
;no_of_probe_disabled_products (ULONG): Number of products whose FFSTProbes are disabled.
;pDisableProduct ([[PDISABLEPRODUCT]]) : Pointer to the structure that identifies the product data of the disabled probe. This parameter can be ignored when no_of_probe_disabled_products is 0 or 'FFFFFFFF'.
;message_pop_up (ULONG): Reserved parameter.
 
[[Category:Data type]]

Latest revision as of 16:22, 23 January 2018

typedef struct _CONFIGPARMS {
  ULONG               packet_size;
  ULONG               packet_revision_number;
  ULONG               dump_file_wrap;
  UniChar            *dump_file_directory_name_length;
  PVOID               dump_file_directory_name;
  ULONG               no_of_probe_disabled_products;
  PDISABLEPRODUCT     pDisableProduct;
  ULONG               message_pop_up;
} CONFIGPARMS;

typedef CONFIGPARMS *PCONFIGPARMS;

packet_size (ULONG)
Size, in bytes, of this packet.
packet_revision_number (ULONG)
A long integer value that indicates the revision level of the parameter packet. Use one of the following values defined in FFST.H:
UniCode parameter packet.
Use CONFIGPARMS_OS2_UNICODE to specify the UniCode parameter packet.
ASCII parameter packet.
Use CONFIGPARMS_OS2_ASCII to specify the ASCII parameter packet.
dump_file_wrap (ULONG)
Indicates whether the dumps captured by FFST are to be wrapped or not.
If dump wrap is set to on then dumps will be wrapped when the specified maximum size is reached. If dump wrap is set to off when the specified maximum size is reached then FFST will not create any new dump files.
May be one of the following values:
  • Set dump wrap to off
  • Set dump wrap to on (system default)
dump_file_directory_name_length (ULONG)
Length, in bytes, of the dump directory name.
dump_file_directory_name (PVOID)
Pointer to the fully-qualified dump directory name.
no_of_probe_disabled_products (ULONG)
Number of products whose FFSTProbes are disabled.
pDisableProduct (PDISABLEPRODUCT)
Pointer to the structure that identifies the product data of the disabled probe. This parameter can be ignored when no_of_probe_disabled_products is 0 or 'FFFFFFFF'.
message_pop_up (ULONG)
Reserved parameter.