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.

60 lines
1.1 KiB

  1. page ,132
  2. title HUGE - HUGE value
  3. ;***
  4. ;huge.asm - defines HUGE
  5. ;
  6. ; Copyright (c) 1984-2000, Microsoft Corporation. All rights reserved.
  7. ;
  8. ;Purpose:
  9. ; defines HUGE
  10. ;
  11. ;Revision History:
  12. ;
  13. ; 07/04/84 Greg Whitten
  14. ; initial version
  15. ;
  16. ; 12/21/84 Greg Whitten
  17. ; add assumes so that C can find variable
  18. ;
  19. ; 09/23/87 Barry C. McCord
  20. ; add _matherr_flag for the sake of the
  21. ; C floating-point intrinsic functions
  22. ;
  23. ; 08/29/88 Bill Johinston
  24. ; 386 version
  25. ;
  26. ; 08/27/91 JeffRob
  27. ; ANSI naming
  28. ;
  29. ; 09/06/91 GeorgioP
  30. ; define HUGE as positive infinity
  31. ;
  32. ; 09/06/91 GeorgioP
  33. ; define _HUGE_dll
  34. ;
  35. ; 04/05/93 SteveSa
  36. ; undefine _HUGE_dll
  37. ; 10/14/93 GregF
  38. ; Restored _HUGE_DLL for _NTSDK
  39. ;
  40. ;*******************************************************************************
  41. _DATA$00 SEGMENT PARA PUBLIC 'DATA'
  42. align 8
  43. ifdef _NTSDK
  44. ifdef CRTDLL
  45. public _HUGE_dll
  46. _HUGE_dll dq 7ff0000000000000R
  47. else
  48. public _HUGE
  49. _HUGE dq 7ff0000000000000R
  50. endif
  51. else
  52. public _HUGE
  53. _HUGE dq 7ff0000000000000R
  54. endif
  55. _DATA$00 ends
  56. end