hexdump.h

来自「DKW Heavy Industries VPN network driver」· C头文件 代码 · 共 40 行

H
40
字号
#ifndef HEXDUMP_DEFINED#define HEXDUMP_DEFINED#ifdef __cplusplusextern "C" {#endif//=====================================================================================//                                   Debug Routines//=====================================================================================#ifndef NDIS_MINIPORT_DRIVER#   include <stdio.h>#   include <ctype.h>#   include <windows.h>#   include <winnt.h>#   include <memory.h>#   ifndef DbgPrint#      define DbgPrint DbgMessage#   endif    extern void (*DbgMessage)(char *p_Format, ...);    void DisplayDebugString (char *p_Format, ...);#endif//===================================================================================//                              Reporting / Debugging//===================================================================================#define IfPrint(c) (c >= 32 && c < 127 ? c : '.')void HexDump (unsigned char *p_Buffer, unsigned long p_Size);#ifdef __cplusplus}#endif#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?