Adding upstream version 3.61+dfsg.
[syslinux-debian/hramrach.git] / com32 / include / dmi / dmi_system.h
blob27293649d676e78a2fff8b84f99b4862fd3b99a7
1 /* ----------------------------------------------------------------------- *
3 * Copyright 2006 Erwan Velu - All Rights Reserved
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, Inc., 53 Temple Place Ste 330,
8 * Boston MA 02111-1307, USA; either version 2 of the License, or
9 * (at your option) any later version; incorporated herein by reference.
11 * ----------------------------------------------------------------------- */
13 #ifndef DMI_SYSTEM_H
14 #define DMI_SYSTEM_H
16 #define SYSTEM_MANUFACTURER_SIZE 32
17 #define SYSTEM_PRODUCT_NAME_SIZE 32
18 #define SYSTEM_VERSION_SIZE 16
19 #define SYSTEM_SERIAL_SIZE 32
20 #define SYSTEM_UUID_SIZE 40
21 #define SYSTEM_WAKEUP_TYPE_SIZE 32
22 #define SYSTEM_SKU_NUMBER_SIZE 32
23 #define SYSTEM_FAMILY_SIZE 32
25 typedef struct {
26 char manufacturer[SYSTEM_MANUFACTURER_SIZE];
27 char product_name[SYSTEM_PRODUCT_NAME_SIZE];
28 char version[SYSTEM_VERSION_SIZE];
29 char serial[SYSTEM_SERIAL_SIZE];
30 char uuid[SYSTEM_UUID_SIZE];
31 char wakeup_type[SYSTEM_WAKEUP_TYPE_SIZE];
32 char sku_number[SYSTEM_SKU_NUMBER_SIZE];
33 char family[SYSTEM_FAMILY_SIZE];
34 } s_system;
36 #endif