📄 fbdbg.h
字号:
/*******************************************************************************
* Name : fbdbg.h
* Title : FB management debug functions header
* Author : Mike Brassington
* Created : 6th June 2002
*
* Copyright : 2002 by Imagination Technologies Limited.
* All rights reserved. No part of this software, either
* material or conceptual may be copied or distributed,
* transmitted, transcribed, stored in a retrieval system
* or translated into any human or computer language in any
* form by any means, electronic, mechanical, manual or
* other-wise, or disclosed to third parties without the
* express written permission of Imagination Technologies
* Limited, Unit 8, HomePark Industrial Estate,
* King's Langley, Hertfordshire, WD4 8LZ, U.K.
*
* Description : Header of FB management functions only used for a debug build
*
* Platform : Generic
*
* Modifications:-
* $Log: fbdbg.h $
*
* --- Revision Logs Removed ---
*
* --- Revision Logs Removed ---
*
* --- Revision Logs Removed ---
*
* --- Revision Logs Removed ---
*******************************************************************************/
#if !defined(__FBDBG_H__)
#define __FBDBG_H__
#include "debug.h"
#include "hostfunc.h"
#define DBGALLOC_FB_DBGLEV_NONE 0
#define DBGALLOC_FB_DBGLEV_FILL 1
#define DBGALLOC_FB_DBGLEV_STRUCTURE 2
#define DBGALLOC_FB_DBGLEV_CORRUPTION 3
#define READ_PHYS_MEMBLK(addr, ptr, strct) ptr=(PPHYS_MEMBLK)addr;
#define READ_HEAP(addr, ptr, strct) ptr=(PHEAP)addr;
#define DPF_NEWLINE
void CheckHeapStructure(PHEAP psHeap, BOOL bPrintHeap, BOOL bPrintPhys);
extern DWORD g_dwFBAllocDbgLevel;
#endif /* __FBDBG_H__ */
/*****************************************************************************
End of file (FBDBG.H)
*****************************************************************************/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -