Welcome![Sign In][Sign Up]
Location:
Search - winio

Search list

[Windows Develop20085041

Description: WinIo 实际操作和程序源代码 WinIo 实际操作和程序源代码 -WinIo 实际操作和程序源代码 WinIo 实际操作和程序源代码
Platform: | Size: 190464 | Author: 乐乐 | Hits:

[Driver DevelopWinIo

Description: 实现windows XP等类似操作系统下, 对内存以及IO端口的访问-Provide memory and IO port access under Windows XP etc.
Platform: | Size: 104448 | Author: 张嘉豪 | Hits:

[Delphi/CppBuilderWinIo

Description: PC 端口控制,方便编程,如LPT读写等。-PC port control, to facilitate programming, such as reading and writing, such as LPT.
Platform: | Size: 189440 | Author: zff | Hits:

[Windows DevelopWinIogame(source)

Description: WinIo模拟按键通杀所有游戏(VB源码)-Analog pass WinIo button to kill all Games (VB source)
Platform: | Size: 26624 | Author: dreamhk | Hits:

[Driver DevelopWinIo

Description: 能够直接在XP下对BIOS进行读写,源码中包含了驱动,库,还有测试程序。-Directly in the BIOS under XP to read and write, includes source drive, the Treasury, as well as testing procedures.
Platform: | Size: 116736 | Author: hj | Hits:

[OS programWinIoSample

Description: VC下WinIo的应用实例(改进版)根据前一版有网友提出的建议进行改进,为了在VC中能正常使用WinIo库,必须按以下步骤进行配置:   (1):将WinIo.dll、WinIo.sys、WINIO.VXD三个文件放在程序可执行文件所在目录下;    (2):将WinIo.lib添加到工程中,WinIo.lib及winio.h文件必须放在工程目录下;   (3):在StdAfx.h头文件中加入#include "winio.h"语句;   (4):调用InitializeWinIo函数初始化WinIo驱动库;   (5):调用读写IO口的GetPortVal或SetPortVal函数;   (6):调用ShutdownWinIo函数; 本实例是在VC6.0环境下 XP系统. -How to use the WinIo library in Win2000 and WinXP system. this sample will lead you to use the WinIo rightly.
Platform: | Size: 65536 | Author: 苏庆红 | Hits:

[Windows DevelopWinIoLib

Description: 2000及xp下的WinIo库,由于Window对系统底层进行了保护,对开发人员造成很大的困扰,你可以用这个WinIO帮助你进行系统底层IO访问. -WinIo library
Platform: | Size: 19456 | Author: 苏庆红 | Hits:

[assembly languagewinio

Description:
Platform: | Size: 10240 | Author: 小斌 | Hits:

[OS programPCIScanCode

Description: PCI Scan WinIO , SMBUS Program, ICH6. SPD DIMM, Memory.PCI Scan WinIO , SMBUS Program, ICH6. SPD DIMM, Memory
Platform: | Size: 2048 | Author: Tony | Hits:

[Driver DevelopwinIOVBs

Description: WinIo模拟按键 VB源码,打包完整文件-Pass key WinIo simulation game to kill all the VB source code, complete documentation package
Platform: | Size: 22528 | Author: | Hits:

[CommunicationWinIo

Description: WIN ISO mauanl document *.chm-WIN ISO mauanl document*.chm
Platform: | Size: 8192 | Author: 中小倉 | Hits:

[Driver Developzhaojiuwen_winio

Description: 这是赵久文修改过内部参数,并经过C++封装的比较好用的winio库-This is the revised text Zhao JiuWen internal parameters, and after C++ package winio-to-use database comparison
Platform: | Size: 608256 | Author: 赵久文 | Hits:

[OS programdelphi_winio

Description: 这是一个delphi的winio封装库,经过测试,十分好用。-This is a delphi library of winio package, tested and very easy to use.
Platform: | Size: 863232 | Author: 赵久文 | Hits:

[Delphi VCLInput

Description: 由于支付宝安全输入控件,如同其他众多安全控件方法一样,采用驱动方法劫持了IRP。这导致无法向其输入字符,传统的方法无论是发送WM_Char或者是WM_Keydown消息,还是Keybd_event和SendInput均对其无效。 笔者摸索出了通过直接读取$60,$64硬件端口来操作键盘,模拟输入的方法。 由于在Ring3下,由于Windows的保护机制,我无法直接操作硬件端口,所以我们需要构造一个驱动,或者使用著名的WinIo库。 这里给出我封装好的使用WinIo库进行模拟击键输入的代码,此段代码只在PS/2下测试通过,未在USB情况下测试。本代码主要封装了ASCII码或字符与键盘扫描码之间转换。 -Email security as a result of input controls, as many other methods of security control as a hostage-driven approach adopted IRP. This has led not to enter characters, both traditional methods WM_Char or send WM_Keydown news, or Keybd_event and its SendInput are null and void. I explored through direct read $ 60, $ 64 hardware keyboard ports, analog input methods. Ring3 because, as the Windows of the protection mechanism, I can not directly operate the hardware port, so we need to construct a drive, or the use of well-known WinIo library. Given a good package here, I use the keyboard to simulate the Treasury WinIo enter the code, This code only in the PS/2 under the test is passed, no test in the USB case. The main package of the code of the ASCII code or character and switch between the keyboard scan code.
Platform: | Size: 19456 | Author: 冰剑 | Hits:

[Otherwinio

Description: 可用于实现键盘记录。端口操作不需要编写驱动,在Win95/98下直接可以使用汇编的In/Out指令。VC中也提供了_inp/_outp这样的函数(QA001059 outportb、inportb对应的函数)。不过在NT下,不能使用In/Out指令,参考QA001296 如何在WindowsNT/2000下用VB6写硬件IO控制。 如果使用硬件中断就必须编写驱动,标准的办法是采用微软的DDK。Win98和WinNT 4.0/5.0的DDK可以从http://www.microsoft.com/ddk免费下载。从你的电子邮件来看,你是教育网的用户,那么你可以从教育网的一些FTP站点(如北大图书馆)下载到Win95/98/NT的DDK,我们下面提到的一些软件也可以找到。Win95 DDK主要是采用汇编的。如果你对汇编不熟悉,当然是使用VToolsD(http://www.vireo.com/)更好些,这个软件包允许你使用C/C++编写驱动,但软件包比较贵(约四、五百美金)。另外,你可以在http://zealsoft.nease.net/cn/ntport/或http://zealsoft.nease.net/cn/memaccess/找到与硬件有关的软件,这些软件允许你不编写驱动,直接在VC中调用驱动,如果你的编程不复杂,也可以使用。 -Port operations do not need to write drivers in Win95/98 can be used directly to compile the In/Out commands. VC also provides _inp/_outp such a function (QA001059 outportb, inportb the corresponding function). However, under NT, can not use the In/Out commands, reference QA001296 how to use VB6 to write WindowsNT/2000 hardware under the control of IO. If you use a hardware interrupt on the need to write drivers, the standard approach is the use of Microsoft DDK. Win98 and WinNT 4.0/5.0 the DDK can be downloaded free of charge from the http://www.microsoft.com/ddk. E-mail from your point of view, you are a user of the Education Network, you can network some education FTP site (such as the Beijing University Library) Win95/98/NT download the DDK, below some of our software can also be found . Win95 DDK compiled mainly used. If you are not familiar with the compilation, of course, is the use of VToolsD (http://www.vireo.com/) better, this package allows you to use C/C+
Platform: | Size: 202752 | Author: | Hits:

[Windows DevelopWInio

Description: 该程序利用IO端口来模拟键盘操作,虽然我只例举了部份键,但可以举一反三,用同样的办法可以其它 键.其中所需要的DLL文件我也压缩在里面了.-IO ports using the program to simulate the keyboard operation, although I am only some key examples, but they can learn by analogy, using the same approach could be the other key. Which required DLL file compression I had inside.
Platform: | Size: 23552 | Author: Tony | Hits:

[Windows DevelopBITEK_ASM2_v009

Description: BITEK Assembler2 utility 支援 BIT161x 全系列 BIT1612/BIT1615/BIT1615H/BIT1617/BIT1625 的master mode assembly code. 安裝程序如下: 1) 安裝 driver for USB I2C kit. 2) 解壓縮 BITEK_ASM2, SiUSBXp, 和 WinIo 至同一目錄即可. -BITEK Assembler2 utility supports BIT161x series IC (BIT1612/BIT1615/BIT1615H/BIT1617/BIT1625)master mode assembly code. The installation procedue as below: 1) To install driver for USB I2C kit. 2) To decompress BITEK_ASM2, SiUSBXp, 和 WinIo to the same folder.
Platform: | Size: 377856 | Author: Jeffrey Chang | Hits:

[Driver DevelopPCI_IO_SYS

Description: 一個PCI_IO為驅動程式範例,本範例參考"PCIConf","Winio"及"接口驅動程序開發"修改而成,主要修改的檔案為Ioctls.h及Control.c-1 PCI_IO-driven programming paradigm, in this example refer to " PCIConf" , " Winio" and " interface driver development" revisions, major changes of the files are Ioctls.h and Control.cpp
Platform: | Size: 489472 | Author: yp751 | Hits:

[Driver Develop2007032313432823734

Description: 在VB下面做的一个调用WINIO实现并口通讯的小例子(内含时序配合)-done in VB below the realization of a parallel port call WINIO communications small examples (intron timing tie)-done in VB below the realization of a parallel port call WINIO communications small examples (intron timing tie)
Platform: | Size: 198656 | Author: gobeng zhang | Hits:

[Windows DevelopWinIoenhanced

Description: 针对原来的winio不能访问高端内存的问题,进行了修改,可以2G以上的内存-For the original winio not have access to high-end memory problems been modified, you can more than 2G of memory
Platform: | Size: 536576 | Author: mike | Hits:
« 1 2 3 4 5 67 8 9 10 11 ... 19 »

CodeBus www.codebus.net