Source code of Windows XP (NT5)
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.

38 lines
894 B

  1. page ,132
  2. title dllsupp - defines some public constants
  3. ;***
  4. ;dllsupp.asm - Definitions of public constants
  5. ;
  6. ; Copyright (c) 1992-2001, Microsoft Corporation. All rights reserved.
  7. ;
  8. ;Purpose:
  9. ; Provides definitions for public constants (absolutes) that are
  10. ; 'normally' defined in objects in the C library, but must be defined
  11. ; here for clients of crtdll.dll & msvcrt*.dll. These constants are:
  12. ;
  13. ; _except_list
  14. ; _fltused
  15. ; _ldused
  16. ;
  17. ;Revision History:
  18. ; 01-23-92 GJF Module created.
  19. ;
  20. ;*******************************************************************************
  21. .xlist
  22. include cruntime.inc
  23. .list
  24. ; offset, with respect to FS, of pointer to currently active exception handler.
  25. ; referenced by compiler generated code for SEH and by _setjmp().
  26. public _except_list
  27. _except_list equ 0
  28. public _fltused
  29. _fltused equ 9876h
  30. public _ldused
  31. _ldused equ 9876h
  32. end