Files
rpc/info.h
2020-09-08 13:40:45 -07:00

22 lines
545 B
C++

/*********************************************************************
* Copyright (c) Intel Corporation 2019 - 2020
* SPDX-License-Identifier: Apache-2.0
**********************************************************************/
#ifndef __INFO_H__
#define __INFO_H__
#include <string>
bool info_get(const std::string info);
bool info_get_version();
bool info_get_build_number();
bool info_get_sku();
bool info_get_uuid();
bool info_get_control_mode();
bool info_get_dns_suffix();
bool info_get_wired_mac_address();
bool info_get_all();
#endif