⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 hexdump.h

📁 DKW Heavy Industries VPN network driver
💻 H
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -