AppWizard has created this CalcModule DLL for you. This file contains a summary of what you will find in each of the files that make up your CalcModule application. CalcModule.dsp This file (the project file) contains information at the project level and is used to build a single project or subproject. Other users can share the project (.dsp) file, but they should export the makefiles locally. CalcModule.cpp This is the main DLL source file. When created, this DLL does not export any symbols. As a result, it will not produce a .lib file when it is built. If you wish this project to be a project dependency of some other project, you will either need to add code to export some symbols from the DLL so that an export library will be produced, or you can check the "doesn't produce lib" checkbox in the Linker settings page for this project.
2023-04-10 16:32:49 273KB dll 内存 64
1
能够对已损坏的内存修复。当然也能改写内存的SPD,千万不能用它来做坏事哟。
2023-04-06 17:04:43 382KB 内存
1
本文主要介绍了C51单片机的内存优化问题。
2023-04-04 16:18:52 77KB 单片机 C51 内存优化 文章
1
本文介绍了*** ERROR L107: ADDRESS SPACE OVERFLOW错误的解决方法。
2023-04-04 13:00:29 36KB keil 内存空间 变量 data区
1
C++动态分配内存(new)和撤销内存(delete) 在软件开发过程中,常常需要动态地分配和撤销内存空间,例如对动态链表中结点的插入与删除。在C语言中是利用库函数malloc和free来分配和撤销内存空间的。C++提供了较简便而功能较强的运算符new和delete来取代malloc和free函数。 注意: new和delete是运算符,不是函数,因此执行效率高。 虽然为了与C语言兼容,C++仍保留malloc和free函数,但建议用户不用malloc和free函数,而用new和delete运算符。new运算符的例子: new int; //开辟一个存放整数的存储空间,返回一个指向该存储空
2023-04-02 11:23:51 71KB c++ c语言指针 delete
1
最后的单线程浏览器,省内存,老机器必选,又能支持H5页面,不会象多线程浏览器一样,一开网页好多线程,严重耗内存
2023-03-28 17:32:02 53.13MB H5 省内存
1
由于CPU访问物理地址空间有限,而外部设备也需要一个地址让CPU来访问,这就会有一个争夺物理地址空间的问题。本来4GB的物理地址空间都是给内存使用的,但现在多了很多外部设备,这些外部设备中的寄存器也需要空间。CPU给这些外部设备分配空间的方式有两种:统一编址与独立编址。
2023-03-28 14:27:41 116KB 内存映射
1
此书主要讲解了内存动态分配算法和垃圾回收算法。希望对需要的朋友有所帮助。
2023-03-28 11:06:13 13.71MB 内存管理 垃圾回收
1
主要读写函数为:RFM2gWrite和RFM2gRead。进行简单的字符串读写和结构体读写。
2023-03-28 10:48:11 2KB c++ rfm
1
PC技术内幕一书详细描述了PC的硬件信息,如键盘接口,BIOS,CPU,内存,硬盘和软盘等。重要的是当你编程时,需要硬件接口时你特别需要这些信息,而这些信息这本书里都有详细描述。可惜现在只有电子版了,书店已经没有卖了。
2023-03-26 22:10:22 19.92MB PC 技术内幕 CPU 内存
1