-
一个对系统硬件进行访问的程序!配合w2k_load,w2k_lib,w2k_spy使用!...
一个对系统硬件进行访问的程序!配合w2k_load,w2k_lib,w2k_spy使用!-A system hardware procedures visit! With w2k_load, w2k_lib, w2k_spy use!
- 2022-03-18 21:18:24下载
- 积分:1
-
使用delphi2007编制的delphi2007 update 4 破除时间限制的项目
使用delphi2007编制的delphi2007 update 4 破除时间限制的项目-Delphi2007 prepared using delphi2007 update 4 projects get rid of time limit
- 2022-07-18 22:52:49下载
- 积分:1
-
c++ Builder环境下获取本地机器硬盘ID号,支持ATA和SATA类型。
c++ Builder环境下获取本地机器硬盘ID号,支持ATA和SATA类型。-c++ Builder environment access to the local machine hard drive ID number, the type of support for ATA and SATA.
- 2022-10-27 20:00:03下载
- 积分:1
-
读写usb
上面的OpenDevice函数就是演示如何根据设备GUID打开一个USB接口的设备,和设备读写通讯的时候就需要了解设备的驱动到底都支持什么方式了...
读写usb
上面的OpenDevice函数就是演示如何根据设备GUID打开一个USB接口的设备,和设备读写通讯的时候就需要了解设备的驱动到底都支持什么方式了。可以使用UsbView工具查看USB设备到底支持几个Endpoint,每个都以什么方式读写。
如果你的设备支持3个EndPoint,0号是控制的,1号是读,2号是写,那你直接读取0号Endpoint,搞不好就会发生重起的问题 -literacy usb above OpenDevice function is to demonstrate how open the equipment GUID a USB interface equipment literacy and communications equipment when there is a need to understand the driving equipment in the end all support the way. UsbView tools can use USB devices in the end View supports several Endpoint. each of the ways to read and write. If your equipment supports three EndPoint, 0, control, on the 1st of reading, writing on the 2nd, you direct read 0, Endpoint, will take place regardless of the starting weight problem
- 2023-04-27 09:00:04下载
- 积分:1
-
This is an image processing on the VC program source code and a good example
这是一个关于图像处理的VC++程序源代码,很好的例子-This is an image processing on the VC program source code and a good example
- 2022-01-26 02:33:16下载
- 积分:1
-
ADO type of use and the establishment. Suitable for beginners to use. More detai...
ADO类的使用和建立。适合初学者借用。内容比较详细。-ADO type of use and the establishment. Suitable for beginners to use. More detailed content.
- 2022-12-25 10:35:03下载
- 积分:1
-
线程计时器,与TTimer功能相同,能够完成定时操作的功能
线程计时器,与TTimer功能相同,能够完成定时操作的功能-Thread timer, and TTimer same function
- 2022-10-13 05:15:03下载
- 积分:1
-
远程文件读取程序,针对初学者而言一学就会
远程文件读取程序,针对初学者而言一学就会-Remote file reading program for beginners in terms of one school will
- 2022-04-21 21:42:38下载
- 积分:1
-
"Windows programming secret," the most high
《Windows编程奥妙》,Windows编程最高阶图书,《Windwos高级编程》只能算进阶图书。该书作者是Boundcheck编写者之一。强力推荐。-"Windows programming secret," the most high-end Windows programming books, "Advanced Programming Windows" can only be described as intermediate books. The book"s author is Boundcheck one of the authors. Strongly recommended.
- 2022-06-19 02:12:54下载
- 积分:1
-
Windows 中创建空的备用列表
翻译:maninwest@Codeforge 作者:Member 10018957 @CodeProject如何在 Windows 中创建看空的备用列表。进程黑_客的制造者了解 Windows 内核的里里外外,他们也幸运地熟练掌握 Windows 内核的设计语言C++。而其他的人则努力通过 C# 执行相似的功能。其中一个功能就是释放来自 windows 备用内存的内存。这就是我们在此要做的。最难的部分是获取内核的优先权限。感谢Nick Lowe:http://processprivileges.codeplex.com/步骤1:设置内核优先权限Microsoft 设计了可以获取包含结构数组的结构的 API。没有适用于此的编组过程的捷径。要么假设数组是 length=1 要么要求数组大小在编译时预先确定。为此,我设计了一个类,它通过 System.IntPtr拥有微软在未管理的内存中需要的确切结构。当前,我不得不采用不安全的步骤,但是我确定,将来会有办法绕过。[return: MarshalAs(UnmanagedType.Bool)]
[SuppressUnmanagedCodeSecurity, DllImport("advapi32.dll", SetLastError = true)] internal static extern bool AdjustTokenPrivileges(AccessTokenHandle accessTokenHandle,
[MarshalAs(UnmanagedType.Bool)] bool disableAllPrivileges, IntPtr NewPriviledges, Int32 bufferLength, ref IntPtr PriorPriviledges, out Int32 returnLength); 将我的类和 Nick Lowe 的优先代码相结合,我们可以设置内核优先权限:
- 2022-05-07 13:17:48下载
- 积分:1