reactos/rosapps/devutils/syscalldump/syscalldump.rbuild
Timo Kreuzer c9dc5d76f8 syscall dumper for win32k that also works on vista.
You need dbghelp.dll and symsrv.dll. The ones from syscall lister (http://www.openrce.org/blog/view/808/Syscall_lister) work fine, the ones shipped with windows don't.
todo: support x64

svn path=/trunk/; revision=31340
2007-12-19 21:48:15 +00:00

10 lines
329 B
Ruby

<module name="syscalldump" type="win32cui" installname="syscalldump.exe">
<include base="syscalldump">.</include>
<define name="__USE_W32API" />
<define name="_WIN32_IE">0x0501</define>
<define name="_WIN32_WINNT">0x0501</define>
<library>kernel32</library>
<library>dbghelp</library>
<file>syscalldump.c</file>
</module>