Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
NTSDExts.h
Package: SwordOnline.rar [view]
Upload User: dzyhzl
Upload Date: 2019-04-29
Package Size: 56270k
Code Size: 2k
Category:
Game Server Simulator
Development Platform:
C/C++
- /*
- 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
- #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 // _NTSDEXTNS_