文件名称:LoadRunner测试过程中调用dll文件的制作与使用
文件大小:13KB
文件格式:DOCX
更新时间:2012-01-19 04:30:56
调用dll
LoadRunner测试过程中调用dll文件的制作与使用 1、dll文件的制作 在Visual C++6.0开发环境下,打开File-New-Project选项,可以选择Win32 Dynamic-Link Library来创建一个名为dllfortest的空的dll工程(这只是方法之一)。 在该项目中新建一个dllfortest.h和dllfortest.cpp文件,文件的内容如下: //dllfortest.h extern "C" _declspec(dllexport) int Max(int a, int b, int c); extern "C" _declspec(dllexport) int Min(int a, int b, int c);