home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / crt / src / platform / dllsupp.asm < prev    next >
Assembly Source File  |  1998-06-17  |  1KB  |  36 lines

  1.         page    ,132
  2.         title   dllsupp - defines some public constants
  3. ;***
  4. ;dllsupp.asm - Definitions of public constants
  5. ;
  6. ;       Copyright (c) 1992-1997, 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. ;*******************************************************************************
  18.  
  19. .xlist
  20. include cruntime.inc
  21. .list
  22.  
  23. ; offset, with respect to FS, of pointer to currently active exception handler.
  24. ; referenced by compiler generated code for SEH and by _setjmp().
  25.  
  26.         public  _except_list
  27. _except_list    equ     0
  28.  
  29.         public  _fltused
  30. _fltused        equ     9876h
  31.  
  32.         public  _ldused
  33. _ldused         equ     9876h
  34.  
  35.         end
  36.