mirror of https://github.com/tongzx/nt5src
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.
67 lines
1.7 KiB
67 lines
1.7 KiB
!IF 0
|
|
**************************************************************
|
|
Sources file for building Working Set Tuner Data Collection dll.
|
|
|
|
Module Name : wst.dll
|
|
|
|
Author: RezaB
|
|
|
|
Revision: Added BATCHING information (MarkLea)
|
|
|
|
Comments:
|
|
|
|
The following defines can be used to control output of all the
|
|
debugging information to the debugger via KdPrint() for the checked
|
|
builds:
|
|
|
|
(All debugging options are undefined in wst.c for free/retail builds)
|
|
|
|
#ifdef ERRORDBG : Displays all the error messages to the debugger. It
|
|
has no effect on the timing. *DEFAULT*
|
|
|
|
#ifdef INFODBG : Displays messages to indicate when data dumping/
|
|
clearing operations are completed. It has no effect
|
|
on timing. *DEFAULT*
|
|
|
|
#ifdef SETUPDBG : Displays messages during memory management and
|
|
symbol lookup operations. It has some affect
|
|
on timing whenever a chuck of memory is committed.
|
|
|
|
#ifdef DETAILDBG : Dispalys detailed data during dump operations.
|
|
Sends lots of output (2 lines for each data cell)
|
|
to the debugger. Should only be used for debugging
|
|
data cell info.
|
|
|
|
#ifdef BATCHING : Outputs batch count information to BATCH.TXT
|
|
|
|
#ifdef C6 : Generate code using C6 compiler. C6 compiler
|
|
calls _mcount() as the profiling routine where as
|
|
C8 calls _penter().
|
|
|
|
**************************************************************
|
|
!ENDIF
|
|
|
|
DLLBASE=0x77800000
|
|
DLLENTRY=WSTMain
|
|
|
|
DLLDEF=$(O)\wst.def
|
|
|
|
USE_NTDLL=1
|
|
|
|
TARGETNAME=wst
|
|
TARGETPATH=obj
|
|
TARGETTYPE=DYNLINK
|
|
TARGETLIBS= \
|
|
$(SDK_LIB_PATH)\kernel32.lib \
|
|
$(SDK_LIB_PATH)\dbghelp.lib \
|
|
$(SDK_LIB_PATH)\gdi32.lib
|
|
|
|
SOURCES=wst.c wst.rc
|
|
|
|
UMTYPE=windows
|
|
|
|
C_DEFINES=-DWIN32
|
|
|
|
ALPHA_SOURCES=alpha\wstutl.s
|
|
AXP64_SOURCES=alpha\wstutl.s
|
|
IA64_SOURCES=ia64\wstutl.s
|