diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2008-03-05 20:56:23 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2008-03-05 20:56:23 -0500 |
commit | a75284dbd70acc7ec4a832045c8a2fbec2d773d8 (patch) | |
tree | 22eaeeb6253fedae3898926d6559dedfd9a66e88 /src/smbios.h | |
parent | 3d029417164e9a6dffee491fb061de3de6d85595 (diff) | |
download | seabios-a75284dbd70acc7ec4a832045c8a2fbec2d773d8.tar.gz |
Commit missing files from last commit.
Diffstat (limited to 'src/smbios.h')
-rw-r--r-- | src/smbios.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/smbios.h b/src/smbios.h new file mode 100644 index 00000000..8b2f854f --- /dev/null +++ b/src/smbios.h @@ -0,0 +1,17 @@ +/* + * smbios.h + * SMBios/DMI tables generation for PC machine. + * + * Copyright (C) 2008 Nguyen Anh Quynh <aquynh@gmail.com> + * Copyright (C) 2002 MandrakeSoft S.A. + * + * This file may be distributed under the terms of the GNU GPLv3 license. + */ + +#ifndef __SMBIOS_H +#define __SMBIOS_H + +/* initialize smbios tables */ +void smbios_init(void); + +#endif /* __SMBIOS_H */ |