| Server IP : 209.209.40.120 / Your IP : 216.73.217.112 Web Server : Microsoft-IIS/10.0 System : Windows NT NEWWWW 10.0 build 17763 (Windows Server 2019) i586 User : NEWWWW$ ( 0) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Program Files (x86)/Windows Kits/10/Include/10.0.19041.0/um/ |
Upload File : |
/*
Copyright (c) Microsoft Corporation. All rights reserved.
Module Name:
ntsdexts.h
Abstract:
This file contains procedure prototypes and structures
needed to write old NTSD and KD debugger extensions.
NOTE: Newer defitions and interfaces are in wdbgexts.h
Environment:
runs in the Win32 NTSD debug environment.
Revision History:
--*/
#ifndef _NTSDEXTNS_
#define _NTSDEXTNS_
#if _MSC_VER > 1000
#pragma once
#endif
#include <winapifamily.h>
#if _MSC_VER >= 1200
#pragma warning(push)
#pragma warning(disable:4820) // padding added after data member
#endif
#pragma region Desktop Family
#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)
#ifdef __cplusplus
extern "C" {
#endif
typedef
VOID
(__cdecl *PNTSD_OUTPUT_ROUTINE)(
char *,
...
);
typedef
ULONG_PTR
(*PNTSD_GET_EXPRESSION)(
char *
);
typedef
VOID
(*PNTSD_GET_SYMBOL)(
ULONG_PTR offset,
PUCHAR pchBuffer,
ULONG_PTR *pDisplacement
);
typedef
DWORD
(*PNTSD_DISASM)(
ULONG_PTR *lpOffset,
LPSTR lpBuffer,
ULONG fShowEfeectiveAddress
);
typedef
BOOL
(*PNTSD_CHECK_CONTROL_C)(
VOID
);
typedef struct _NTSD_EXTENSION_APIS {
DWORD nSize;
PNTSD_OUTPUT_ROUTINE lpOutputRoutine;
PNTSD_GET_EXPRESSION lpGetExpressionRoutine;
PNTSD_GET_SYMBOL lpGetSymbolRoutine;
PNTSD_DISASM lpDisasmRoutine;
PNTSD_CHECK_CONTROL_C lpCheckControlCRoutine;
} NTSD_EXTENSION_APIS, *PNTSD_EXTENSION_APIS;
typedef
VOID
(*PNTSD_EXTENSION_ROUTINE)(
HANDLE hCurrentProcess,
HANDLE hCurrentThread,
DWORD dwCurrentPc,
PNTSD_EXTENSION_APIS lpExtensionApis,
LPSTR lpArgumentString
);
#ifdef __cplusplus
}
#endif
#endif /* WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP) */
#pragma endregion
#if _MSC_VER >= 1200
#pragma warning(pop)
#endif
#endif // _NTSDEXTNS_