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.

43 lines
793 B

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