登录
首页 » Windows核心 » in industrial production control system, there are many needs time to complete t...

in industrial production control system, there are many needs time to complete t...

于 2022-04-21 发布 文件大小:4.50 MB
0 167
下载积分: 2 下载次数: 1

代码说明:

在工业生产控制系统中,有许多需要定时完成的操作,如定时显示当前时间,定时刷新屏幕上的进度条,上位 机定时向下位机发送命令和传送数据等。特别是在对控制性能要求较高的实时控制系统和数据采集系统中,就更需要精确定时操作。-in industrial production control system, there are many needs time to complete the operation, such as the timing shows the current time, regularly updated progress on the screen of the PC regular crew sent down orders and transmit data. Especially in the control of the high performance requirements of real-time control system and data acquisition system, the need for more precision timing operation.

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • Please read your Please read your Please read your Please read your
    Please read your Please read your Please read your Please read your-Please read yourPlease read yourPlease read yourPlease read yourPlease read yourPlease read yourPlease read your
    2022-03-18 09:53:06下载
    积分:1
  • 具体的功能是:从下拉列表框中选中一个驱动器,然后点击右边的...
    具体的功能是:从下拉列表框中选中一个驱动器,然后点击右边的-specific function : from the drop-down list box, select a drive, then click on the right
    2023-06-27 10:20:04下载
    积分:1
  • 查看系统安装的驱动器
    查看系统安装的驱动器-View system installed Drivers
    2022-02-04 17:43:00下载
    积分:1
  • 物资管理系统 一 开发环境 OS: Windows 2000 Server + SP2 IDE: Visual Studio 6.0 + SP5 DataB...
    物资管理系统 一 开发环境 OS: Windows 2000 Server + SP2 IDE: Visual Studio 6.0 + SP5 DataBase: SQL 2000 Server + SP2 二 运行 1:创建数据库 将Material.sql中的SQL语句考入SQL Server的查询分析器中,全部运行; 2:建立ODBC数据源 数据原名称为Material_MIS -Materials management system development environment 1 OS: Windows 2000 Server+ SP2 IDE: Visual Studio 6.0+ SP5 DataBase: SQL 2000 Server+ SP2 Second Run 1: Create a database in SQL statements Material.sql admitted to the SQL Server query analyzer, all running 2: Create ODBC data source data formerly known as Material_MIS
    2022-06-26 14:03:39下载
    积分:1
  • vc++源码 文件被其他程序更改时提醒用户
    vc++源码 文件被其他程序更改时提醒用户-vc++ source files are other programs to remind users when to change
    2022-08-09 20:39:15下载
    积分:1
  • PRTG是windows平台下的MRTG,它利用SNMP协议对网络流量,CPU负载,内存利用率等数据的进行监控,并且生成各种统计图形,Web页面和报表。MRTG...
    PRTG是windows平台下的MRTG,它利用SNMP协议对网络流量,CPU负载,内存利用率等数据的进行监控,并且生成各种统计图形,Web页面和报表。MRTG使用起来复杂,操作都是命令行格式,需要perl支持,而PRTG提供图形化的向导,方便简单。... -PRTG windows platform is the MRTG, which uses SNMP to network traffic, CPU load, memory utilization data for the monitoring, and generates all kinds of statistics and graphics, Web pages and statements. MRTG to use complex operations are command line format, perl support PRTG and provide graphical wizard, easy to use. ...
    2022-04-19 03:22:13下载
    积分:1
  • 多进程同步读写 使用互斥量,事件量同步读写操作,数据记录存放在内存映射文件中,读写指针也存放在内存映射文件中.基于对话框的程序,使用listbox控件显示运行状...
    多进程同步读写 使用互斥量,事件量同步读写操作,数据记录存放在内存映射文件中,读写指针也存放在内存映射文件中.基于对话框的程序,使用listbox控件显示运行状态,并及时清空listbox控件。进程之间共享数据。-?????掏 ????列
    2022-02-21 16:46:01下载
    积分:1
  • 这些文件完整实现火车查询、售票系统,含源代码以及数据库系统...
    这些文件完整实现火车查询、售票系统,含源代码以及数据库系统-Full implementation of these documents train inquiries, ticketing system, including source code and database system
    2022-08-18 00:04:10下载
    积分: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
  • IE反修改专家,用于IE被恶意修改。
    IE反修改专家,用于IE被恶意修改。-IE counter- revision expert, uses in IE by the malicious revision.
    2022-07-20 09:17:30下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载