mirror of https://github.com/tongzx/nt5src
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.
36 lines
1.0 KiB
36 lines
1.0 KiB
//+-------------------------------------------------------------------------
|
|
//
|
|
// Microsoft Windows
|
|
// Copyright (C) Microsoft Corporation, 1992 - 1993.
|
|
//
|
|
// File: dbgexts.h
|
|
//
|
|
// Contents: macro for declaration of debugger extensions for friend
|
|
// to each class
|
|
//
|
|
// Classes:
|
|
//
|
|
// Functions:
|
|
//
|
|
// History: dd-mmm-yy Author Comment
|
|
// 03-Feb-95 t-ScottH author
|
|
//
|
|
//--------------------------------------------------------------------------
|
|
|
|
#ifndef _DBGEXTS_H_
|
|
#define _DBGEXTS_H_
|
|
|
|
#include <ntsdexts.h>
|
|
|
|
#define DEBUG_EXTENSION_API(s) \
|
|
void \
|
|
s( \
|
|
HANDLE hCurrentProcess, \
|
|
HANDLE hCurrentThread, \
|
|
DWORD dwCurrentPc, \
|
|
PNTSD_EXTENSION_APIS lpExtensionApis, \
|
|
LPSTR args \
|
|
)
|
|
|
|
#endif // _DBGEXTS_H_
|
|
|