// Copyright (C) 2021 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only WITH Qt-GPL-exception-1.0 #include #include #include #include #include using namespace Microsoft::WRL; using namespace Microsoft::WRL::Wrappers; using namespace ABI::Windows::Foundation; using namespace ABI::Windows::Devices::Sensors; typedef ITypedEventHandler AccelerometerReadingHandler; int main(int, char**) { HStringReference classId(RuntimeClass_Windows_Devices_Sensors_Accelerometer); ComPtr sensor; ComPtr factory; HRESULT hr = RoGetActivationFactory(classId.Get(), IID_PPV_ARGS(&factory)); hr = factory->GetDefault(&sensor); return 0; }