?? toolhelp.h
字號(hào):
//
// 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
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -