This commit is contained in:
Peihsun Yeh 2019-07-31 15:49:58 -07:00
Родитель 5299610529
Коммит 0e0ba3bace
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -11,7 +11,7 @@ extern "C"
int
IotComms_RegisterPnPInterfaces(
MX_IOT_HANDLE_TAG IotHandle,
MX_IOT_HANDLE_TAG* IotHandle,
const char* ModelRepoId,
DIGITALTWIN_INTERFACE_CLIENT_HANDLE* interfaces,
int InterfaceCount

Просмотреть файл

@ -315,7 +315,7 @@ DiscoveryAdapter_PublishInterfaces() {
PnpAdapterManager_GetAllInterfaces(pnpBridge->PnpMgr, &interfaces, &interfaceCount);
LogInfo("Publishing Azure Pnp Interface, count %d", interfaceCount);
IotComms_RegisterPnPInterfaces(pnpBridge->IotHandle,
IotComms_RegisterPnPInterfaces(&pnpBridge->IotHandle,
pnpBridge->Configuration.ConnParams->DeviceCapabilityModelUri,
interfaces, interfaceCount);