搜索资源列表
SaoLeiFuZu
- 基于windows扫雷游戏的辅助程序,使用CE探测雷区内存,使用spy++确定扫雷游戏界面,用鼠标API模拟按键操作。-Minesweeper game windows based support program, the use of CE to detect minefields of memory, using spy++ determine Minesweeper game interface, API simulation with the mouse button operation
Linux-operator-new-delete
- 在 windows 下使用 VC 编程时,我们通常需要 DEBUG 模式下运行程序,而后调试器将在退出程序时,打印出程序运行过程中在堆上分配而没有释放的内存信息,其中包括代码文件名、行号以及内存大小。该功能是 MFC Framework 提供的内置机制,封装在其类结构体系内部。 在 linux 或者 unix 下,我们的 C++ 程序缺乏相应的手段来检测内存信息,而只能使用 top 指令观察进程的动态内存总额。而且程序退出时,我们无法获知任何内存泄漏信息。为了更好的辅助在 linux 下程序