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.

50 lines
739 B

  1. !ifdef PASS0ONLY
  2. .SUFFIXES: .c
  3. !endif
  4. SLIST_DEPENDS = ..\lookasid.c
  5. ########################################################################
  6. # ntslist.h
  7. #
  8. $(O)\ntslist.h: $(SLIST_DEPENDS) makefile.inc
  9. type << > $@
  10. /*++ BUILD Version: ???? Increment this if a change has global effects
  11. $(COPYRIGHT_STRING)
  12. Module Name:
  13. ntslist.h
  14. Abstract:
  15. This file exposes the internal s-list functionality for projects that need
  16. to run on down-level platforms.
  17. Revision History:
  18. --*/
  19. #ifndef _NTSLIST_
  20. #define _NTSLIST_
  21. #ifdef __cplusplus
  22. extern "C" {
  23. #endif
  24. <<
  25. hextract -f2 -o $@ -lt ntslist -bt begin_ntslist end_ntslist $(SLIST_DEPENDS)
  26. type << >> $@
  27. #ifdef __cplusplus
  28. }
  29. #endif
  30. #endif /* _NTSLIST_ */
  31. <<