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

📄 tchstub.h

📁 PXA270 MainstoneII平台下完整触摸屏驱动源码
💻 H
字号:
//
// Copyright (c) Microsoft Corporation.  All rights reserved.
//
//
// Use of this sample source code is subject to the terms of the Microsoft
// license agreement under which you licensed this sample source code. If
// you did not accept the terms of the license agreement, you are not
// authorized to use this sample source code. For the terms of the license,
// please see the license agreement between you and Microsoft or, if applicable,
// see the LICENSE.RTF on your install media or the root of your tools installation.
// THE SAMPLE SOURCE CODE IS PROVIDED "AS IS", WITH NO WARRANTIES.
//
#ifndef _TCHSTUB_H
#define _TCHSTUB_H

#define MERGE_WITH_CALLIG 1		// comment out to turn off (don't just set to 0)

#ifdef MERGE_WITH_CALLIG

#ifdef DEBUG
#define DEBUGTOUCH 1                    // this should be on by default for debugging to catch 
                                        //  hardware that is too slow, or driver speed problems
#endif

#define CGRTOUCH_ROM_VERSION   1

#define CGRTOUCH_MAJOR_VERSION   5
#define CGRTOUCH_MINOR_VERSION   1
#define CGRTOUCH_RELEASE         5

#define MYDEBUGMSG(cond,printf_exp)  {}
#define MYERRORMSG(cond,printf_exp)  {}

extern HWND*   _phStubWnd;
extern HWND    _hClientWnd;
extern HWND    _hLastTouchFocusWnd;
extern short   _iClientFlags;
extern DWORD   _dwLastSendedTick;

extern DWORD    dwMinPauseBeforeClick;
extern int      iMaxClickDist;
extern int      iMaxDelayDist;
extern DWORD    dwMaxClickTime;
extern DWORD    dwMinStartDelayTime;
extern DWORD    dwMinInterDelayTime;
extern int		_cProcessNumb;
extern HANDLE*  _phinstDll;

#ifdef DEBUGTOUCH
extern BOOL _bNoDbgMsg;
#endif // DEBUGTOUCH

void CgrTouchStubInitialize(HANDLE  hinstDll);

#endif // MERGE_WITH_CALLIG

#endif // _TCHSTUB_H

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -