Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
568 B

  1. HRESULT
  2. DateFormattoNTTimeFormat(
  3. DATE *DateFormat,
  4. LARGE_INTEGER *NTTimeFormat
  5. );
  6. HRESULT
  7. NTTimeFormattoDateFormat(
  8. LARGE_INTEGER *NTTimeFormat,
  9. DATE *DateFormat
  10. );
  11. HRESULT
  12. ConvertDATEtoDWORD(
  13. DATE daDate,
  14. DWORD *pdwDate
  15. );
  16. HRESULT
  17. ConvertSystemTimeToDATE(
  18. SYSTEMTIME Time,
  19. DATE * pdaTime
  20. );
  21. HRESULT
  22. ConvertDWORDtoDATE(
  23. DWORD dwTime,
  24. DATE * pdaTime
  25. );
  26. HRESULT
  27. ConvertDATEToSYSTEMTIME(
  28. DATE daDate,
  29. SYSTEMTIME *psysDate
  30. );