登录
首页 » 操作系统 » a small operation registry procedures, the pair creation, modification are prett...

a small operation registry procedures, the pair creation, modification are prett...

于 2022-01-25 发布 文件大小:75.01 kB
0 141
下载积分: 2 下载次数: 1

代码说明:

一个操作注册表的小程序,键值的创建,修改等都很不错哦-a small operation registry procedures, the pair creation, modification are pretty good oh

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

发表评论

0 个回复

  • 自己动手写,书的配套光盘。很好的入门级教材,是《》极好的课设参考资料。...
    自己动手写操作系统,书的配套光盘。很好的入门级教材,是《操作系统》极好的课设参考资料。-to write their own operating system, the matching CD. A good entry-level teaching materials, "operating system" excellent lesson based reference materials.
    2022-02-20 17:40:44下载
    积分:1
  • c语言的小编译器,学习的好东东.
    c语言的小编译器,学习的好东东.-small c language compiler, a good learning Wanton.
    2022-03-03 00:30:16下载
    积分:1
  • 课程设计,模拟UNIX磁盘文件管理 • 建立文件存储介质的管理机制 • 建立目录 • 文件功能(显示目...
    操作系统课程设计,模拟UNIX磁盘文件管理系统 • 建立文件存储介质的管理机制 • 建立目录 • 文件系统功能(显示目录、创建、删除、打开、关闭、读、写) • 文件操作接口(显示目录、创建、删除、打开、关闭、读、写)-Operating system, curriculum design, simulation UNIX disk file management system • Create file storage media management mechanisms • • File system functions to create the directory (show directory, create, delete, open, close, read, write) • File Operation Interface (show directory, create, delete, open, close, read, write)
    2023-02-17 07:05:03下载
    积分:1
  • 文件复制器 2007.07.28.0最新VB源代码 地狱门神(F.R.C.) 适用范围 Windows环境下,本地存储设备的文件夹之间。 测试环...
    文件复制器 2007.07.28.0最新VB源代码 地狱门神(F.R.C.) 适用范围 Windows环境下,本地存储设备的文件夹之间。 测试环境 2007.07.27.0版,Windows XP SP2,一次复制文件量6.2万,大小11.5GB。 使用建议 如果需要使用本软件一次处理数量以万计算,大小以GB计算的文件,建议使用Visual Studio 2005集成环境调试运行,以发现并正确处理各种难以预料的异常,避免重复浪费时间。-Copy the file up-to-date browser 2007.07.28.0 hell god VB source code (FRC) the scope of application under the Windows environment, the local storage device between folders. Test environment 2007.07.27.0 version, Windows XP SP2, a copy volume of 62,000 documents, the size of 11.5GB. If you need to use the proposed use of the software first in order to deal with the number of million, and the size of the document calculated to GB, it is recommended to use Visual Studio 2005 integrated debugging environment to run to detect and correctly handle a variety of difficult to predict abnormal, avoid duplication of a waste of time.
    2023-09-05 01:25:02下载
    积分:1
  • 人们有大量的背景知识来应对日常生活中的情况。
    People have vast background knowledge to cope with everyday situations. We don t have to be told everything explicitly because we can call on the background knowledge. We use `default knowledge to handle situations where knowledge is incomplete. This is called common sense reasoning. -People have vast background knowledge to cope with everyday situations. We don t have to be told everything explicitly because we can call on the background knowledge. We use `default knowledge to handle situations where knowledge is incomplete. This is called common sense reasoning.
    2022-01-26 01:20:30下载
    积分:1
  • 生产者和消费者
    生产者和消费者实验代码,主要是为了应付操作系统实验而选择的代码。希望可以帮助到大家顺利完成实验吧,不挂科。代码有相应的注释,大家应该看得懂。代码的环境是VC6.0就可以编译,很方便。好了,大家有兴趣就下载来用用吧。
    2022-12-01 10:45:03下载
    积分:1
  • vc++演示哲学家进餐问题,非常好用
    vc++演示操作系统哲学家进餐问题,非常好用-vc operating system demonstration dining philosopher, a very handy
    2023-03-19 11:15:04下载
    积分:1
  • Running on T
    运行于T-Engine(使用T-Kernel操作系统)的实例源码,该T-Engine采用处理器为sh7727-Running on T-Engine (the use of T-Kernel operating system) source code examples, the T-Engine used for the SH7727 processor
    2022-12-17 12:25:02下载
    积分:1
  • 兔子吃草
    #include "stdafx.h" #include #include #include /*信号量的定义,它是负责协调各个线程, 以保证它们能够正确、合理的使用公共资源。 用于控制进程间的同步与互斥*/  typedef HANDLE Semaphore;  Semaphore g_semBuffer,g_semGlass, g_mutex; //mutex 为互斥锁  // 利用 Windows 下的 API 函数(视窗操作系统应用程序接口)来定义 P、V 操作  #define P(S) WaitForSingleObject(S,INFINITE) #define V(S) ReleaseSemaphore(S,1,NULL) #define rate 1000  #define CONSUMER_NUM 4 // 消费者个数 #define PRODUCER_NUM 4 // 生产者个数 #define BUFFER_NUM 4 // 缓冲区个数  char *thing[4]={"glass1","glass2","glass3","glass4"}; //公共的队列缓冲区  struct Buffer {  int product[BUFFER_NUM];  int front,rear;  }g_buf; //兔子线程 DWORD WINAPI Rabbit(LPVOID para)  {  int i =*(int*)para; //第 i 只小白兔&
    2022-05-23 06:18:02下载
    积分:1
  • 自己写的银行家算法,只能实现固定进程和资源的,不过要是应付业什么的没有问题,绝对可以运行...
    自己写的银行家算法,只能实现固定进程和资源的操作,不过要是应付作业什么的没有问题,绝对可以运行-himself wrote bankers algorithm, the process can only be fixed and operational resources, but what if the deal with no operational problems and it can definitely run
    2022-05-18 17:01:27下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载