?? 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 + -