0

2 つの extern "C" 関数が含まれる C++ DLL と、extern 関数の 1 つから呼び出される静的関数を作成しました。静的関数 (DLL にも含まれている) を呼び出す C# から extern 関数を呼び出そうとすると、ビルド警告が表示されます (「メソッド、演算子、またはアクセサー '...' は外部とマークされており、属性がありません。外部実装を指定するために DllImport 属性を追加することを検討してください.) 静的関数呼び出しをコメント アウトすると、すべてがスムーズにコンパイルされます.これを修正する方法についてのアイデアはありますか?静的関数でも extern を使用する必要がありますか?

私のコードは以下の通りです:

#include <stdio.h>
#include <sqlite3.h>
#include <iostream>
#include <ios>
#include <string>
#include <vector>

using std::string;
using std::vector;

// PARSE CSV FILE
static void ParseCSV(const string& csvSource, vector<vector<string> >& lines)
{
        // static function to parse CSV
}    

extern "C"
{


    // somefunction([MarshalAs(UnmanagedType.LPStr) string text) [c#]
    __declspec(dllexport) bool SQLite_ImportCSV(const char *dbPath, const char *csvPath, const char *tableName)
    {
        // call to static function (if i comment this out it works ok)
        ParseCSV(csvPath, lines);

            //.....
    }

    // CREATE TABLE
    __declspec(dllexport) bool SQLite_CreateTable(const char *dbPath, const char *tableName, const char *fieldList)
    {
        // some code here...
    }
}

ここにC#コード:

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

namespace CPP_Library_To_NET
{
    class Program
    {
        [DllImport("Testlib.dll", CallingConvention = CallingConvention.Cdecl)]
        public static extern bool SQLite_CreateTable([MarshalAs(UnmanagedType.LPStr)]string dbPath, 
                                                     [MarshalAs(UnmanagedType.LPStr)]string tableName,
                                                     [MarshalAs(UnmanagedType.LPStr)]string fieldList);

        public static extern bool SQLite_ImportCSV([MarshalAs(UnmanagedType.LPStr)]string dbPath,
                                                   [MarshalAs(UnmanagedType.LPStr)]string csvPath,
                                                   [MarshalAs(UnmanagedType.LPStr)]string tableName);

        static void Main(string[] args)
        {
            // some variable initialisations...

            // Create table
            ret = SQLite_CreateTable(path, tableName, fieldList);

            if (!ret) { Console.WriteLine("Failed to create table " + tableName); }
            else { Console.WriteLine("Successfully created table " + tableName); }

            // Importing CSV data...
            ret = SQLite_ImportCSV(path, csvPath, "TestTab");

            if (!ret) { Console.WriteLine("Failed to import csv " + csvPath); }
            else { Console.WriteLine("Successfully imported csv " + csvPath); }

            Console.ReadLine();
        }
    }
}

これを修正する方法についてのアイデアはありますか?

4

1 に答える 1

1

以下のように DLLImport を再度追加してみてください。動作するかどうかを確認してください。

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

    namespace CPP_Library_To_NET
    {
        class Program
        {
            [DllImport("Testlib.dll", CallingConvention = CallingConvention.Cdecl)]
            public static extern bool SQLite_CreateTable([MarshalAs(UnmanagedType.LPStr)]string dbPath, 
                                                         [MarshalAs(UnmanagedType.LPStr)]string tableName,
                                                         [MarshalAs(UnmanagedType.LPStr)]string fieldList);

            //Try to add DLLImport again like below, see if it works
            [DllImport("Testlib.dll", CallingConvention = CallingConvention.Cdecl)]
            public static extern bool SQLite_ImportCSV([MarshalAs(UnmanagedType.LPStr)]string dbPath,
                                                       [MarshalAs(UnmanagedType.LPStr)]string csvPath,
                                                       [MarshalAs(UnmanagedType.LPStr)]string tableName);

            static void Main(string[] args)
            {
                // some variable initialisations...

                // Create table
                ret = SQLite_CreateTable(path, tableName, fieldList);

                if (!ret) { Console.WriteLine("Failed to create table " + tableName); }
                else { Console.WriteLine("Successfully created table " + tableName); }

                // Importing CSV data...
                ret = SQLite_ImportCSV(path, csvPath, "TestTab");

                if (!ret) { Console.WriteLine("Failed to import csv " + csvPath); }
                else { Console.WriteLine("Successfully imported csv " + csvPath); }

                Console.ReadLine();
            }
        }
    }
于 2013-10-21T10:57:40.877 に答える