Jump to content

DISABLEPRODUCT: Difference between revisions

From EDM2
mNo edit summary
No edit summary
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
{{DISPLAYTITLE:DISABLEPRODUCT}}


;DMI_vendor_tag ([[UniChar]] *):Pointer to the short product manufacturer name that was logged in the DMI database.
;DMI_tag (UniChar *):Pointer to the short product name that was logged in the DMI database.
;DMI_revision (UniChar *):Pointer to the product revision information that was logged in the DMI database.
==Example Code==
<PRE>
  typedef struct _DISABLEPRODUCT {
  typedef struct _DISABLEPRODUCT {
   UniChar      *[[DMI_vendor_tag]];
   UniChar      *DMI_vendor_tag;
   UniChar      *[[DMI_tag]];
   UniChar      *DMI_tag;
   UniChar      *[[DMI_revision]];
   UniChar      *DMI_revision;
  } DISABLEPRODUCT;
  } DISABLEPRODUCT;
   
   
  typedef   DISABLEPRODUCT   * PDISABLEPRODUCT ;
  typedef DISABLEPRODUCT *PDISABLEPRODUCT;
</PRE>


[[Category:Data type]]
[[Category:Data type]]

Latest revision as of 17:25, 2 May 2025

DMI_vendor_tag (UniChar *)
Pointer to the short product manufacturer name that was logged in the DMI database.
DMI_tag (UniChar *)
Pointer to the short product name that was logged in the DMI database.
DMI_revision (UniChar *)
Pointer to the product revision information that was logged in the DMI database.

Example Code

 typedef struct _DISABLEPRODUCT {
   UniChar      *DMI_vendor_tag;
   UniChar      *DMI_tag;
   UniChar      *DMI_revision;
 } DISABLEPRODUCT;
 
 typedef DISABLEPRODUCT *PDISABLEPRODUCT;