You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
432 B
C
16 lines
432 B
C
2 years ago
|
#ifndef GET_SYSTEM_DEVICE_INFORMATION_H
|
||
|
#define GET_SYSTEM_DEVICE_INFORMATION_H
|
||
|
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
extern bool get_cpu_id(std::string & cpu_id);
|
||
|
extern bool get_mac_address(std::string & mac_address);
|
||
|
extern bool get_disk_serial_number(std::string & disk_serial);
|
||
|
extern bool get_board_serial_number(std::string & board_serial);
|
||
|
extern void get_device_info(std::string & device_info);
|
||
|
|
||
|
|
||
|
#endif // GET_SYSTEM_DEVICE_INFORMATION_H
|
||
|
|