---------------------------------------------------------------------------
| 1858 | } |
| 1859 | //--------------------------------------------------------------------------- |
| 1860 | void MySetLocalTime(TDateTime t) |
| 1861 | { |
| 1862 | SYSTEMTIME st; |
| 1863 | DateTimeToSystemTime(t, st); |
| 1864 | if( ! SetLocalTime( &st ) ) |
| 1865 | { |
| 1866 | DWORD error; |
| 1867 | String errmess = FormatLastError(error); |
| 1868 | throw Exception(errmess + " [" + error + "]"); |
| 1869 | } |
| 1870 | // SetLocalTime ���� �������� 2 ���� ���� ������������ ������� �� ������ ����� |
| 1871 | //SetLocalTime( &st ); |
| 1872 | } |
| 1873 | //--------------------------------------------------------------------------- |
| 1874 | int GetCurrentElevationType(void) |
| 1875 | { |
nothing calls this directly
no test coverage detected