2015-08-18 111 views
0

看起来位置API是遗留的(?)。它不工作的GetReport(...),但如果你设置RegisterForReport工作正常(......)我得到的错误是遵循Windows 10桌面应用程序的位置API C++

drivers\mobilepc\locationconvergence\api\winlegacyapi\dllapi\legacyapiimpltemplate.h(197)\LocationApi.dll!06552CA7: (caller: 06552D34) ReturnHr[PreRelease](1) tid(478) 8007139F The group or resource is not in the correct state to perform the requested operation. 
    [CLocationApiImplTemplate<class CLegacyPositionRequest,&struct __s_GUID const _GUID_e4e915a9_8344_4f88_9326_2adc071d4ff6>::GetReportInterval(!m_fRegistered)] 
SalesMan::AGW_CLASS::AGWLocationWin8::GetLocation> HR=8007139F 
SalesMan::AGW_CLASS::AGWLocationWin8::GetLocation> reportInterval=0 
drivers\mobilepc\locationconvergence\api\winlegacyapi\dllapi\legacyapiimpltemplate.h(158)\LocationApi.dll!06554401: (caller: 06554448) ReturnHr[PreRelease](2) tid(478) 800700E8 The pipe is being closed. 
    [CLocationApiImplTemplate<class CLegacyPositionRequest,&struct __s_GUID const _GUID_e4e915a9_8344_4f88_9326_2adc071d4ff6>::GetReport(m_pLatLongReport == nullptr)] 
drivers\mobilepc\locationconvergence\api\winlegacyapi\dllapi\legacypositionrequest.cpp(80)\LocationApi.dll!06554469: (caller: 06552BF2) ReturnHr[PreRelease](3) tid(478) 800700E8 The pipe is being closed. 
    [CLegacyPositionRequest::GetReport(__super::GetReport(ReportType, ppLocationReport))] 

我必须在这里说RequestPermissions(...)工作正常并返回OK。 Windows 8.1上的相同应用程序正常工作。 任何人有任何想法?

预先感谢您 乔治

回答

0

我通过实现事件驱动的位置报告绕过这个问题。 可能Windows 10初始化速度比Windows 8慢,因为硬件是相同的。我给它一个3秒的报告间隔并报告回去的经纬度

George

相关问题