| 67 | } |
| 68 | |
| 69 | bool RemoteDevice::CheckITSDll() |
| 70 | { |
| 71 | DWORD outsize=0; |
| 72 | HRESULT res= CeRapiInvoke(L"\\Windows\\ItsUtils.dll", L"ITGetVersion", |
| 73 | 0, NULL, &outsize, NULL, NULL, 0); |
| 74 | if (res>10000 || res<ITSDLL_VERSION) |
| 75 | { |
| 76 | return CeCopyFileToDevice(g_cfg.ApplicationRoot+"\\itsutils.dll", "\\windows"); |
| 77 | } |
| 78 | return true; |
| 79 | } |
| 80 | bool RemoteDevice::Connect() |
| 81 | { |
| 82 | if (m_bConnected) |
nothing calls this directly
no test coverage detected