[DRWTSN32] Add SMBIOS data to the system information (#1017)

[DMILIB][UDMIHELP] Allow functions to be linked with C++ code.
This commit is contained in:
Stanislav Motylkov 2018-11-21 23:49:15 +03:00 committed by Hermès BÉLUSCA - MAÏTO
parent d897e271a2
commit baf2c0cc2d
4 changed files with 53 additions and 4 deletions

View file

@ -5,7 +5,14 @@
* COPYRIGHT: Copyright 2018 Stanislav Motylkov
*/
#pragma once
#ifndef UDMIHELP_H
#define UDMIHELP_H
#ifdef __cplusplus
extern "C" {
#endif
#include <../dmilib/dmilib.h>
PVOID
LoadSMBiosData(
@ -25,3 +32,9 @@ GetSMBiosStringW(
VOID
FreeSMBiosData(
_In_ PVOID Buffer);
#ifdef __cplusplus
} // extern "C"
#endif
#endif /* UDMIHELP_H */