📄 mytrace.h
字号:
//------------------------------------------------------------------------------
// File : MyTrace.h
// Version : 1.0
// Date : Mai 2002
// Author : Bruno Podetti
// Email : Podetti@gmx.net
//
// Systems : VC6.0 and VC7.0
//
// Tracing windowsmessages. Copied and modified from the MFC part.
//------------------------------------------------------------------------------
#if !defined(__MY_TRACE_H_)
#define __MY_TRACE_H_
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#ifndef ARRAY_SIZE
#define ARRAY_SIZE(a) (sizeof(a)/sizeof(a[0]))
#endif
void MyTraceMsg(LPCTSTR lpszPrefix, const MSG* pMsg);
void MyTraceMsg(LPCTSTR lpszPrefix, HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
#endif //__MY_TRACE_H_
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -