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.

18 lines
318 B

  1. #ifdef SSP_TARGET_CARBON
  2. #include <Carbon/Carbon.h>
  3. #endif //SSP_TARGET_CARBON
  4. #include <bootdefs.h>
  5. #include <ntlmsspi.h>
  6. DWORD
  7. SspTicks(
  8. )
  9. {
  10. #ifndef MAC
  11. // Seems good enough, it claims to be in seconds.
  12. return ArcGetRelativeTime();
  13. #else
  14. return TickCount() / 60;
  15. #endif
  16. }