Windows NT 4.0 source code leak
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.

52 lines
2.9 KiB

5 years ago
  1. /****************************************************************************/
  2. /****************************************************************************/
  3. /* */
  4. /* THE DOS SYSTEM SPECIFIC MODULE (TIMERS) */
  5. /* ======================================= */
  6. /* */
  7. /* SYS_TIME.H : Part of the FASTMAC TOOL-KIT (FTK) */
  8. /* */
  9. /* Copyright (c) Madge Networks Ltd. 1991-1994 */
  10. /* Developed by MF */
  11. /* CONFIDENTIAL */
  12. /* */
  13. /* */
  14. /****************************************************************************/
  15. /* */
  16. /* The purpose of the DOS system specific module is to provide those */
  17. /* services that are influenced by the operating system. This includes */
  18. /* memory allocation routines, interrupt and DMA channel enabling/disabling */
  19. /* routines, and routines for accessing IO ports. */
  20. /* */
  21. /* The SYS_TIME.H file contains the exported function definitions for the */
  22. /* SYS_TIME.ASM module. */
  23. /* */
  24. /****************************************************************************/
  25. /****************************************************************************/
  26. /* */
  27. /* VERSION_NUMBER of FTK to which this SYS_TIME.H belongs : */
  28. /* */
  29. #define FTK_VERSION_NUMBER_SYS_TIME_H 221
  30. /****************************************************************************/
  31. extern void sys_wait_at_least_milliseconds(
  32. WORD number_of_milliseconds
  33. );
  34. extern void sys_wait_at_least_microseconds(
  35. WORD number_of_microseconds
  36. );
  37. /* */
  38. /* */
  39. /************** End of SYS_TIME.H file **************************************/
  40. /* */
  41. /* */