⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dmi.h

📁 这个linux源代码是很全面的~基本完整了~使用c编译的~由于时间问题我没有亲自测试~但就算用来做参考资料也是非常好的
💻 H
字号:
/* **************************************************************************** * *          File Name   :       DMI.H * *          Author      :       Mike Bartholomew. * *          Date        :       08 Oct 1998 * *          Purpose     :       This include file used for definitions  *                              associated with detecting DMI information *                              within the host system BIOS * *          Copyright   :       American Megatrends Inc., (C) 1997-1998 *                              All rights reserved. * **************************************************************************** */#ifndef __AMI_DMI_H__#define __AMI_DMI_H__#define MAX_DMI_BUFFER 8192#define BIOS_START_ADDR 0x000f0000l#define BIOS_STOP_ADDR 0x00100000ltypedef struct _dmi_header{   unsigned char  Signature[5];   unsigned char  Checksum;   unsigned short StructLength;   unsigned char  StructAddr[4];   unsigned short NumberOfStructs;   unsigned char  BCDRevision;   unsigned char  Reserved;}DMI_HEADER;#endif/***************************** End of DMI.H *******************************/

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -