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
43 lines
793 B
SLIST_DEPENDS = ..\lookasid.c
|
|
|
|
########################################################################
|
|
# ntslist.h
|
|
#
|
|
|
|
$(O)\ntslist.h: $(SLIST_DEPENDS) makefile.inc
|
|
type << > $@
|
|
/*++ BUILD Version: ???? Increment this if a change has global effects
|
|
|
|
$(COPYRIGHT_STRING)
|
|
|
|
Module Name:
|
|
|
|
ntslist.h
|
|
|
|
Abstract:
|
|
|
|
This file exposes the internal s-list functionality for projects that need
|
|
to run on down-level platforms.
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#ifndef _NTSLIST_
|
|
#define _NTSLIST_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
<<
|
|
hextract -f2 -o $@ -lt ntslist -bt begin_ntslist end_ntslist $(SLIST_DEPENDS)
|
|
type << >> $@
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _NTSLIST_ */
|
|
<<
|
|
$(PUBLISH_CMD) {$@=$(PROJECT_INC_PATH)\ntslist.h}
|