📄 common.h
字号:
#ifndef __Common_h__
#define __Common_h__
#include <windows.h>
//
// constants
//
// Hooked hex edit boxes with the ES_MULTILINE flag raise an WM_COMMAND
// msg, in the case the user presses enter, with the the following notify
// command.
#define NM_HEXEDITENTER 0x2222
//
// exports
//
BOOL HookHexEditbox(HWND hEdit);
BOOL HookEditboxEnter(HWND hEdit);
LRESULT __stdcall HexOnlyEditProc(HWND hWnd,UINT Msg,WPARAM wParam,LPARAM lParam);
LRESULT __stdcall EditHookEnterProc(HWND hWnd,UINT Msg,WPARAM wParam,LPARAM lParam);
BOOL HexStrToInt(char *szHexStr, DWORD *pdwHexVal);
//BOOL CopyTextData2Clipboard(void* pData, DWORD dwc);
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -