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.
58 lines
624 B
58 lines
624 B
/*++
|
|
|
|
Copyright (c) 1999 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
log.c
|
|
|
|
Abstract:
|
|
|
|
WinDbg Extension Api
|
|
implements !_log
|
|
|
|
Author:
|
|
|
|
KenRay
|
|
|
|
Environment:
|
|
|
|
User Mode.
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
|
|
#include "precomp.h"
|
|
#include "genusbkd.h"
|
|
|
|
DECLARE_API( help )
|
|
|
|
/*++
|
|
|
|
Routine Description:
|
|
|
|
dumps the extension
|
|
|
|
Arguments:
|
|
|
|
args - Address flags
|
|
|
|
Return Value:
|
|
|
|
None
|
|
|
|
--*/
|
|
|
|
{
|
|
dprintf("GenUsbKd Usage: \n\n");
|
|
|
|
dprintf("dumplog <GenUSB Device Extension> <# of entries>\n");
|
|
|
|
dprintf("\n\n\n");
|
|
|
|
return S_OK;
|
|
}
|
|
|
|
|