18 lines
313 B
C
18 lines
313 B
C
|
// Hack! DbgPrint is much nicer than OutputDebugString so JonT exported it from xapi.lib
|
||
|
// (as DebugPrint) but the prototype isn't in the public headers...
|
||
|
extern "C"
|
||
|
{
|
||
|
ULONG
|
||
|
DebugPrint(
|
||
|
PCHAR Format,
|
||
|
...
|
||
|
);
|
||
|
}
|
||
|
|
||
|
VOID
|
||
|
LowLevelTest(
|
||
|
ULONG Port,
|
||
|
ULONG Slot
|
||
|
);
|
||
|
|