Popravil sem metode AL_WireToHostFormat...() in AL_HostToWireFormat...(), da so preglednejše in da delujejo tudi, kadar je vklopljen "smaller type check".
Med registracijo sem dodal še ponovni zagon servisa EapHost.
This commit is contained in:
parent
540f671160
commit
6c78a47bda
@ -406,8 +406,8 @@ HRESULT COpTaskCreate::Execute(CSession *pSession)
|
||||
}
|
||||
|
||||
// Convert numerical date to DMY (ULONGLONG -> FILETIME -> SYSTEMTIME).
|
||||
ftValue.dwHighDateTime = ullValue >> 32;
|
||||
ftValue.dwLowDateTime = ullValue & 0xffffffff;
|
||||
ftValue.dwHighDateTime = (DWORD)((ullValue >> 32) & 0xffffffff);
|
||||
ftValue.dwLowDateTime = (DWORD)( ullValue & 0xffffffff);
|
||||
::FileTimeToSystemTime(&ftValue, &stValue);
|
||||
|
||||
// Set new trigger date and time.
|
||||
|
Loading…
x
Reference in New Issue
Block a user