登录
首页 » Windows开发 » ssdt查看恢复工具源码,界面程序,具有查看和恢复ssdt功能,可以编译通过...

ssdt查看恢复工具源码,界面程序,具有查看和恢复ssdt功能,可以编译通过...

于 2022-05-17 发布 文件大小:135.63 kB
0 171
下载积分: 2 下载次数: 1

代码说明:

ssdt查看恢复工具源码,界面程序,具有查看和恢复ssdt功能,可以编译通过-View source ssdt recovery tools, interface procedures ssdt with the view and the restoration of function can be compiled through

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

发表评论

0 个回复

  • 2008年10月4日23:17:52
    2008年10月4日23:17:52-October 4, 2008 23:17:52
    2022-07-15 12:58:11下载
    积分:1
  • 图书信息管理系统
    图书信息管理系统包含class BOOK             //一、图书类{private:int num;            //编号string name;         //书名int B_class;      //等级string publishing;    //出版社int isbn;           //ISBNint stock;          //剩余量int sale;           //销量public:BOOK(){}          //构造函数void add1();         //添加图书信息void add2();void setnum(int a)    //在添加第二本书的信息时设置编码{num=a;}int getnum()          //得到编号{return num;}  string getname()     // 得到名称{return name;}void show();           //显示图书信息    int getB_class(){return B_class;}int getsale(){return sale;}
    2023-06-21 15:35:03下载
    积分:1
  • The progress bar, through the spherical distribution of display.This class displ...
    进度条,通过球状分布进行显示。这个类显示一个半透明,阴影模式进度对话框。这一进程的进展情况进行监督作为启动一个新线程,使球体更新进展顺利。如果启用,用户获得的能力,终止与ESC键的过程。该代码将运行在Windows 2000及更高版本。 -The progress bar, through the spherical distribution of display.This class displays a translucent, shadowed modal progress dialog. The process whose progress is to be monitored is started as a new thread, allowing the progress sphere to update smoothly. If enabled, the user is given the ability to terminate the process with the ESC key. The code runs on Windows 2000 and later.
    2022-08-02 20:16:07下载
    积分:1
  • MFC简单画图程序Draw
    这个画图小程序是在 VS2012环境下编写的 MFC 单文档程序, 压缩包内含程序设计详细说明。 功能概述  通过在菜单中选择不同的形状,可以实现画直线、矩形、椭圆以及鼠标按下时随着鼠标移动划线以及橡皮擦功能, 线条粗细、颜色也可以在菜单中调整。  设计思路  通过对菜单的响应获取绘图类型、颜色和线条粗细程度。 通过 CPen 类更改画笔颜色和粗细或将画笔改为橡皮擦, 通过 CDC 类的成员函数 MoveTo( int x, int y );   LineTo( int x, int y );  Rectangle( int x1, int y1, int x2, int y2 );   Ellipse( int x1, int y1, int x2, int y2 );  请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
    2022-03-18 10:23:50下载
    积分:1
  • This is a simple game of Tetris procedures, no written procedures for the Notes.
    这是一个简单的俄罗斯方块游戏程序,写程序时没有注释.-This is a simple game of Tetris procedures, no written procedures for the Notes.
    2022-07-21 04:11:07下载
    积分:1
  • 全角转半角, 英文字符和数字,特殊字符都可以, vc6 源码
    全角转半角, 英文字符和数字,特殊字符都可以, vc6 源码-Turn half-width full-width English characters and numbers, special characters can be, vc6 source
    2023-04-12 03:20:03下载
    积分:1
  • Very useful for monitoring a serial port software, do not take up the case of se...
    非常实用的一款串口监测软件,在不占用串口资源的情况下对串口全方位监测。-Very useful for monitoring a serial port software, do not take up the case of serial resources, all-round monitoring of the serial port.
    2023-03-30 06:20:03下载
    积分:1
  • 煎饼问题 通过设定一定的找零规则来解决实际问题
    煎饼问题 通过设定一定的找零规则来解决实际问题-Pancake problem by setting some rules to solve practical problems through irregular
    2022-07-15 01:53:37下载
    积分:1
  • Active Directory Cookbook For Windows Server 2003
    Active Directory Cookbook For Windows Server 2003
    2022-08-26 09:39:34下载
    积分:1
  • 八皇后VC图形演示,算法思想:回溯法,先在第1行放上一个皇后,然后在第2行合适的位置放上一个皇后,依次类推,如果8行都放满了,说明找到了一个解,如果第好第i行的...
    八皇后VC图形演示,算法思想:回溯法,先在第1行放上一个皇后,然后在第2行合适的位置放上一个皇后,依次类推,如果8行都放满了,说明找到了一个解,如果第好第i行的皇后后,第i+1行找不到合适的位置,这时就回到第i行,把第i行的皇后放到下一个位置,继续尝试下一行。如此反复,知道找到所有的解。注意,这种算法找的解可能有等价的,某些解可由别的解经过旋转棋盘得到。-visual demostration in vc of eight queens problem. algorithm: backtracking. First, put a queen on first line then find a suitable position on 2nd line for next queen, and so on. When all eight lines have queens, it means we have find a solution. If we put the i-th queen, but can find a suitable position on the (i+1)th line, then back to the ith line and move the queen on the ith line to next suitable position and move on to the next line. Repeat this until we have found all the solutions. Note:By this mean, some solutions maybe equivalent to others, some can be acquired by the rotation of other solutions.
    2022-03-23 15:20:19下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载