资源简介
Usb设备插拔检测, 方法:利用检测USB设备的PID, VID的方法进行设备识别。
1.原型在codeproject, 原来版本是vs2005, 我改成了vs6.
2. 改成vs6后,在设备串比对的地方改了下。
整理时间: 2010/06/06 20:18
用途:做gina程序时,有的Key驱动不支持多进程访问。我们只在必要的地方使用Key驱动(读写Key),在检测key状况时,不再用读Key的方法,来判断Key设备是否在线。减小了冲突的可能。
当然,如果Key驱动做的好,就不用这种检测方法。比如HaiTai的Key.
代码片段和文件信息
// CheckSystemPlug.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “CheckSystemPlug.h“
#include “CheckSystemPlugDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CCheckSystemPlugApp
BEGIN_MESSAGE_MAP(CCheckSystemPlugApp CWinApp)
//{{AFX_MSG_MAP(CCheckSystemPlugApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CCheckSystemPlugApp construction
CCheckSystemPlugApp::CCheckSystemPlugApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CCheckSystemPlugApp object
CCheckSystemPlugApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CCheckSystemPlugApp initialization
BOOL CCheckSystemPlugApp::InitInstance()
{
AfxEnableControlContainer();
// Standard initialization
// If you are not using these features and wish to reduce the size
// of your final executable you should remove from the following
// the specific initialization routines you do not need.
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
CCheckSystemPlugDlg dlg;
m_pMainWnd = &dlg;
int nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: Place code here to handle when the dialog is
// dismissed with OK
}
else if (nResponse == IDCANCEL)
{
// TODO: Place code here to handle when the dialog is
// dismissed with Cancel
}
// Since the dialog has been closed return FALSE so that we exit the
// application rather than start the application‘s message pump.
return FALSE;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1229 2010-06-06 19:58 CheckSystemPlug\CheckSystemPlug.clw
文件 2189 2010-06-06 13:20 CheckSystemPlug\CheckSystemPlug.cpp
文件 4321 2010-06-06 13:20 CheckSystemPlug\CheckSystemPlug.dsp
文件 555 2010-06-06 13:20 CheckSystemPlug\CheckSystemPlug.dsw
文件 1423 2010-06-06 13:20 CheckSystemPlug\CheckSystemPlug.h
文件 5537 2010-06-06 13:25 CheckSystemPlug\CheckSystemPlug.rc
文件 16721 2010-06-06 19:49 CheckSystemPlug\CheckSystemPlugDlg.cpp
文件 3620 2010-06-06 19:30 CheckSystemPlug\CheckSystemPlugDlg.h
文件 3741 2010-06-06 13:20 CheckSystemPlug\ReadMe.txt
文件 49152 2010-06-06 20:00 CheckSystemPlug\Release\CheckSystemPlug.exe
文件 9898 2010-06-06 20:02 CheckSystemPlug\Release\USB设备插拔检测抓图.gif
文件 21630 2001-04-20 15:48 CheckSystemPlug\res\CheckSystemPlug.ico
文件 407 2010-06-06 13:20 CheckSystemPlug\res\CheckSystemPlug.rc2
文件 739 2010-06-06 13:24 CheckSystemPlug\resource.h
文件 217 2010-06-06 13:20 CheckSystemPlug\StdAfx.cpp
文件 1054 2010-06-06 13:20 CheckSystemPlug\StdAfx.h
目录 0 2010-06-06 20:02 CheckSystemPlug\Release
目录 0 2010-06-06 13:32 CheckSystemPlug\res
目录 0 2010-06-06 20:01 CheckSystemPlug
----------- --------- ---------- ----- ----
122433 19
相关资源
- FPGA\\基于FPGA的温度检测和PWM风冷系统
- 使用log算子实现的图像边缘检测
- USB HUB usb分线器 电路原理图
- usb3.0_fpga_ddr2原理图
- 角点检测Corners代码
- usbisp ii WIN7/8线驱动-双龙JUNGO-Atmel-
- 程序判别三相电压相序错误的方法
- QRS波检测 小波变换
- 混合高斯模型及背景差分实现检测
- kxlrw40an.exe
- 图片随手势缩放平移,多点触控
- 基于FPGA的误码检测
- C8051F410A/D转换程序
- 基于51单片机的多路温湿度实时监测的
- 基于机器视觉的水果外部品质检测系
- 运动目标检测源代码opencv
- 基于C8051F060的高精度温度控制系统设
- U盘插拔防丢提醒工具 1.0
- JPEG文件隐形信息检测算法
- Faster_RCNN绘制P-R曲线、检测视频
- 基于高光谱成像的蓝莓内部品质检测
- 商用密码产品认证-密码模块分级检测
- SATA转USB方案,原理图(Cadence工程文件
- 电容数字转换器AD7745的工作原理和应
- 后台检测关键字,触发执行操作源码
- ft232r usb uart 驱动
- 车速检测程序
- GM-T 0062-2018密码产品随机数检测要求
- AVRUSB单片机编程与上位机编程教程重
- 树莓派+OpenCV+Arduino实现二维码颜色识
评论
共有 条评论