繁体   English   中英

将LPTSTR参数传递给DLL将导致C ++项目中的访问冲突

[英]Passing LPTSTR Parameter to DLL gives Access Violation in C++ project

我在未解压缩的DLL中调用函数,该DLL解压缩文件。

标头的声明/分配方式一定有误,但无法弄清楚出了什么问题。

VS 2010中的项目字符集是Unicode。

可以使用下面的代码片段从C#成功调用DLL函数(但我需要使其在c ++中工作):

[DllImport("unpacker.dll", EntryPoint = "UnpackFile", PreserveSig = false)]
internal static extern IntPtr UnpackFile(byte[] file, int fileSize,
[MarshalAs(UnmanagedType.LPWStr)] StringBuilder header, int headerSize);

如果我不建议移动标头,则会弹出“访问冲突”。 该函数还返回0,而C#中没有。

有什么想法吗?

VC ++ 2010项目中的代码:

// unpacker.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"
#include <windows.h> 
#include <fstream>

using namespace std;

typedef void* (*UnpackFile)(unsigned char*, int, LPTSTR, int);

int _tmain(int argc, _TCHAR* argv[])
{
    LPTSTR header; 
    //Move this and get a access violation on the _UnpackFile(filetounpack... line

    static unsigned char *filetounpack; //Buffer to byte array with the file to unpack
    int filelen; //variable to store the length of the file
    HINSTANCE dllHandle; // Handle to DLL
    UnpackFile _UnpackFile; // Function pointer
    ifstream filetoread; //Stream class to read from files
    static LPTSTR header2;  //Buffer for the header 2nd


    filetoread.open ("c:/projects/testfile.bin", ios::in | ios::binary|ios::ate); 
    filelen = filetoread.tellg(); //read the length
    filetounpack = new unsigned char [filelen]; //allocate space

    filetoread.seekg (0, ios::beg); //set beginning
    filetoread.read ((char *)filetounpack, filelen); //read the file into the buffer
    filetoread.close(); //close the file

    dllHandle  = LoadLibrary(_T("unpacker.dll"));

    _UnpackFile = (UnpackFile)GetProcAddress(dllHandle, "UnpackFile");

    //header = new _TCHAR[filelen]; //Allocate memory for header
    header2 = new _TCHAR[filelen]; //Allocate memory for header

    //Access violation reading location 0xffffffffffffffff!!!
    void* tmp = _UnpackFile(filetounpack ,filelen ,header2 ,filelen); 

    delete[] filetounpack;
    delete[] header;
    delete[] header2;

    FreeLibrary(dllHandle); 
    return 0;

}
 typedef void* (*UnpackFile)(unsigned char*, int, LPTSTR, int);

这与您的C#声明的CallingConvention属性不匹配。 C#的默认值为StdCall,本机C ++项目的默认值为__cdecl。 固定:

 typedef void* (__stdcall * UnpackFile)(unsigned char*, int, LPTSTR, int);

而且请记住,错误检查是从来没有在C ++中可选的,你真的需要检查是否调用LoadLibrary(成功)和GetProcAddress()。 在C#中是自动的,在C ++中不是自动的。 这两个函数均在失败时返回NULL。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM