// Copyright (C) 2021 The Qt Company Ltd. // SPDX-License-Identifier: BSD-3-Clause #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; }