📄 toolhelp.h
字号:
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//
// Use of this source code is subject to the terms of the Microsoft end-user
// license agreement (EULA) under which you licensed this SOFTWARE PRODUCT.
// If you did not accept the terms of the EULA, you are not authorized to use
// this source code. For a copy of the EULA, please see the LICENSE.RTF on your
// install media.
//
#ifndef __TOOLHELP_H__
#define __TOOLHELP_H__
#include "tlhelp32.h"
#ifdef __cplusplus
extern "C" {
#endif
#define THSNAP_RESERVE (1024*1024)
#define TH32CS_SNAPNOHEAPS 0x40000000 // optimization for text shell to not snapshot heaps
typedef struct TH32HEAPENTRY {
HEAPENTRY32 heapentry;
struct TH32HEAPENTRY *pNext;
} TH32HEAPENTRY;
typedef struct TH32HEAPLIST {
HEAPLIST32 heaplist;
TH32HEAPENTRY *pHeapEntry;
struct TH32HEAPLIST *pNext;
} TH32HEAPLIST, *PTH32HEAPLIST;
typedef struct TH32PROC {
PROCESSENTRY32 procentry;
TH32HEAPENTRY *pMainHeapEntry;
struct TH32PROC *pNext;
} TH32PROC;
typedef struct TH32MOD {
MODULEENTRY32 modentry;
struct TH32MOD *pNext;
} TH32MOD;
typedef struct TH32THREAD {
THREADENTRY32 threadentry;
struct TH32THREAD *pNext;
} TH32THREAD;
typedef struct THSNAP {
LPBYTE pNextFree;
LPBYTE pHighCommit;
LPBYTE pHighReserve;
TH32PROC *pProc;
TH32MOD *pMod;
TH32THREAD *pThread;
TH32HEAPLIST *pHeap;
/* Keep track of the location of snapshot data. */
TH32HEAPENTRY *pCurHeapEntry;
TH32HEAPLIST *pCurHeapList;
} THSNAP;
#ifdef __cplusplus
}
#endif
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -