mytrace.h
来自「入侵检测系统」· C头文件 代码 · 共 26 行
H
26 行
//------------------------------------------------------------------------------
// 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 + =
减小字号Ctrl + -
显示快捷键?