mirror of https://github.com/lianthony/NT4.0
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.
62 lines
687 B
62 lines
687 B
/*++
|
|
|
|
Copyright (c) 1992 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
kuser.c
|
|
|
|
Abstract:
|
|
|
|
WinDbg Extension Api
|
|
|
|
Author:
|
|
|
|
Ramon J San Andres (ramonsa) 5-Nov-1993
|
|
|
|
Environment:
|
|
|
|
User Mode.
|
|
|
|
Revision History:
|
|
|
|
--*/
|
|
|
|
#include "precomp.h"
|
|
#pragma hdrstop
|
|
|
|
VOID
|
|
KUserExtension(
|
|
PCSTR lpArgumentString,
|
|
KUSER_SHARED_DATA * const SharedData
|
|
);
|
|
|
|
|
|
DECLARE_API( kuser )
|
|
|
|
/*++
|
|
|
|
Routine Description:
|
|
|
|
This function is called as an NTSD extension to dump the shared user mode
|
|
page (KUSER_SHARED_DATA)
|
|
|
|
Called as:
|
|
|
|
!kuser
|
|
|
|
Arguments:
|
|
|
|
None
|
|
|
|
Return Value:
|
|
|
|
None
|
|
|
|
--*/
|
|
|
|
{
|
|
KUserExtension( args, SharedUserData );
|
|
}
|
|
|
|
#include "..\\ntsdexts\\kuserext.c"
|