0

c++ dll を c# にインポートしようとすると問題が発生します

dll クラスのコンストラクターを呼び出すと、常に「保護されたメモリを読み書きしようとしました」というエラーが表示されます。同じ回答に対して他のソリューションをロックしてきましたが、解決策が見つかりませんでした。

エラーがC ++部分から発生したことを破棄するために単純な関数を使用することにしましたが、同じ問題を抱えています...

これが私のコードです:

main.cpp:

#include "main.h"

simple_dll::simple_dll(int num) : numero(num) {}

int simple_dll::getNumero() {
    return this->numero;
}

extern "C" DLL_EXPORT BOOL APIENTRY DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
{
    switch (fdwReason)
    {
        case DLL_PROCESS_ATTACH:
            // attach to process
            // return FALSE to fail DLL load
            break;

        case DLL_PROCESS_DETACH:
            // detach from process
            break;

        case DLL_THREAD_ATTACH:
            // attach to thread
            break;

        case DLL_THREAD_DETACH:
            // detach from thread
            break;
    }
    return TRUE; // succesful
}

main.h:

#ifndef __MAIN_H__
#define __MAIN_H__

#include <windows.h>

/*  To use this exported function of dll, include this header
 *  in your project.
 */

#ifdef BUILD_DLL
    #define DLL_EXPORT __declspec(dllexport)
#else
    #define DLL_EXPORT __declspec(dllimport)
#endif


#ifdef __cplusplus
extern "C"
{
#endif

// void DLL_EXPORT SomeFunction(const LPCSTR sometext);
class DLL_EXPORT simple_dll {
    public:
        DLL_EXPORT simple_dll(int num);
        DLL_EXPORT int getNumero();
        int numero;
};

#ifdef __cplusplus
}
#endif

#endif // __MAIN_H__

そして C# コード:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
using System.Reflection;

namespace prueba_dll_VS 
{
    unsafe class Program
    {
        [System.Runtime.InteropServices.DllImport("simple_dll.dll", EntryPoint = "_ZN10simple_dllC2Ei")]
        private static extern System.IntPtr simple_dll(int num);
        [System.Runtime.InteropServices.DllImport("simple_dll.dll", EntryPoint = "_ZN10simple_dll9getNumeroEv")]
        private static extern int getNumero(System.IntPtr hObject);

        static void Main(string[] args)
        {
            System.IntPtr ptr_simple_dll = simple_dll(4); //HERE IS WHERE THE ERROR RAISES
            int hora = getNumero(ptr_simple_dll);
            Console.WriteLine(hora);
            Console.ReadLine();
        }
    }
}

私は怒っています、これはそれほど難しいことではありません。

前もって感謝します。

4

1 に答える 1