2024-04-25 21:47:06 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2018-2024 Intel Corporation
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "aubstream/aubstream.h"
|
|
|
|
|
|
|
|
#include <limits>
|
|
|
|
|
|
|
|
namespace aub_stream {
|
|
|
|
|
|
|
|
extern "C" {
|
2024-05-15 00:26:05 +08:00
|
|
|
void injectMMIOListLegacy(MMIOList mmioList){};
|
2024-04-25 21:47:06 +08:00
|
|
|
void setTbxServerPort(uint16_t port){};
|
2024-05-15 00:26:05 +08:00
|
|
|
void setTbxServerIpLegacy(std::string server){};
|
2024-04-25 21:47:06 +08:00
|
|
|
void setTbxFrontdoorMode(bool frontdoor){};
|
|
|
|
void setAubStreamCaller(uint32_t caller){};
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace aub_stream
|