gm_zlib.cpp

来自「下载来的一个看图软件的源代码」· C++ 代码 · 共 27 行

CPP
27
字号
#include <windows.h>#pragma hdrstop#include <condefs.h>//---------------------------------------------------------------------------//   Important note about DLL memory management in a VCL DLL://////// If your DLL uses VCL and exports any functions that pass VCL String objects// (or structs/classes containing nested Strings) as parameter or function// results, you will need to build both your DLL project and any EXE projects// that use your DLL with the dynamic RTL (the RTL DLL).  This will change your// DLL and its calling EXE's to use BORLNDMM.DLL as their memory manager. In// these cases, the file BORLNDMM.DLL should be deployed along with your DLL// and the RTL DLL (CP3240MT.DLL). To avoid the requiring BORLNDMM.DLL in// these situations, pass string information using "char *" or ShortString// parameters and then link with the static RTL.////---------------------------------------------------------------------------#pragma argsusedint WINAPI DllEntryPoint(HINSTANCE hinst, unsigned long reason, void*){        return 1;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?