-
本程序实现在系统条上添加一个日历的功能,可以以此提供对系统编程的一些参考。...
本程序实现在系统条上添加一个日历的功能,可以以此提供对系统编程的一些参考。-Realize this procedure in the system to add a section on the calendar function, can also be used to provide some reference system programming.
- 2022-02-21 05:09:27下载
- 积分:1
-
本程序可以虚拟成多个桌面,就像使用真的桌面一样,当然你也可以再扩展...
本程序可以虚拟成多个桌面,就像使用真的桌面一样,当然你也可以再扩展-this procedure into several virtual desktop, the desktop is really just like to use the same, of course, you can further extend the
- 2022-03-19 17:12:49下载
- 积分:1
-
本书是讲解Windows操作系统内部机制的一本专著。作者从基本概念入手,全面系统地介绍了Windows底层实现机制、Windows应用程序的基本构件(包括进程、...
本书是讲解Windows操作系统内部机制的一本专著。作者从基本概念入手,全面系统地介绍了Windows底层实现机制、Windows应用程序的基本构件(包括进程、线程、内存管理、动态链接库、线程本地存储和Unicode)以及各类Windows API等,并列举了大量应用程序示例,精辟地分析了Windows编程的各个难点和要点,为掌握Windows编程技巧提供了一条有效的捷径。-This book is to explain the internal mechanisms of Windows operating system a monograph. Authors from the basic concept, a comprehensive and systematic introduction to Windows realize the underlying mechanism, Windows applications, the basic components (including processes, threads, memory management, dynamic link library, thread local storage, and Unicode), as well as all types of Windows API and so on, and listed a large number of application examples, insightful analysis of the various Windows programming difficulties and points, in order to keep Windows programming skills to provide an effective shortcut.
- 2022-03-11 13:43:12下载
- 积分:1
-
在开发嵌入式usb设备程序时有用的pc端通用测试程序
在开发嵌入式usb设备程序时有用的pc端通用测试程序-Usb device embedded in the development of procedures useful pc client Universal Test Procedure
- 2022-10-03 09:30:03下载
- 积分:1
-
的ks8995包含五个10 / 100物理层
The KS8995 contains five 10/100 physical layer
transceivers, five MAC (Media Access Control) units
with an integrated layer 2 switch. The device runs in
two modes. The first mode is a five port integrated
switch and the second is as a five port switch with the
fifth port decoupled from the physical port. In this
mode access to the fifth MAC is provided using a
MII (Media Independent Interface).
- 2022-02-10 04:57:09下载
- 积分: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
-
在Visual C++ 中 模拟输入字符串 查找其他任何字符 并统计字符出现的频度...
在Visual C++ 中 模拟输入字符串 查找其他任何字符 并统计字符出现的频度-in Visual C analog input string find any other characters and the characters statistical frequency
- 2022-01-30 16:53:57下载
- 积分:1
-
With the popularization of information systems, many large middle schools in the...
随着信息系统的普及,很多大、中、小学校都在开发自己的学生档案管理系统,以便对本学校学生的基本信息和学习情况进行管理。
后台数据库使用SQL Server,前台开发工具使用Visual Basic-With the popularization of information systems, many large middle schools in the development of their students and archive management system to students of the school"s basic information and learning management. Background database using SQL Server, future development tools to use Visual Basic
- 2023-02-08 22:20:03下载
- 积分:1
-
操作FAT和NTFS文件系统的程序。它完全不通过Windows的API函数,而通过分析底层二进制代码的方法还原文件系统,从而找到目标文件。达到复制和删除系统系统...
操作FAT和NTFS文件系统的程序。它完全不通过Windows的API函数,而通过分析底层二进制代码的方法还原文件系统,从而找到目标文件。达到复制和删除系统系统文件的目的。是我的毕业设计,只是NTFS下的删除没能实现,并且程序在Win2000上有BUG.-operation NTFS and FAT file system procedures. It is totally through the Windows API function, through analysis of the underlying binary code of reducing file system, and find the target file. To achieve replication system and delete system files purposes. Yes, I graduated from the design, only the NTFS delete failed to materialize, and procedures are in Win2000 Bug.
- 2022-07-04 03:44:58下载
- 积分:1
-
多进程同步读写 使用互斥量,事件量同步读写操作,数据记录存放在内存映射文件中,读写指针也存放在内存映射文件中.基于对话框的程序,使用listbox控件显示运行状...
多进程同步读写 使用互斥量,事件量同步读写操作,数据记录存放在内存映射文件中,读写指针也存放在内存映射文件中.基于对话框的程序,使用listbox控件显示运行状态,并及时清空listbox控件。进程之间共享数据。-?????掏 ????列
- 2022-02-21 16:46:01下载
- 积分:1