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.

35 lines
964 B

  1. ;***
  2. ;timeb.inc - definition of the C Run-Time Library "timeb" structure
  3. ;
  4. ; Copyright (c) 1992-2001, Microsoft Corporation. All rights reserved.
  5. ;
  6. ;Purpose:
  7. ; Analog of <sys/timeb.h> for assembler routines.
  8. ;
  9. ;Notes:
  10. ; This file must reflect the structure "timeb" defined in <sys/timeb.h>
  11. ; and is dependent on the alignment characteristics of the Intel 386;
  12. ; namely, that words ("shorts") are aligned on even addresses and
  13. ; dwords ("longs") are aligned on quad addresses.
  14. ;
  15. ; Important: MIPS follows the Intel 386 convention as well.
  16. ;
  17. ;Revision History:
  18. ; 03-13-92 SKS Initial version
  19. ;
  20. ;******************************************************************************
  21. ;struct _timeb {
  22. ; time_t time;
  23. ; unsigned short millitm;
  24. ; short tmzone;
  25. ; short dstflag;
  26. ; };
  27. _timeb STRUC
  28. _time dd ?
  29. _millitm dw ?
  30. _tmzone dw ?
  31. _dstflag dw ?
  32. __padding__ dw ? ; pad the structure out to
  33. _timeb ENDS ; an even number of DWORDs