P /在结构中调用定义长度的C char *数组

时间:2013-06-06 15:01:13

标签: c# c++ .net c

我已经找了一段时间,但发现没有文章提供答案,所以希望它不是重复的。

我一直在用一个结构进行一些P / Invoking,这很好,但是后来我看到了这个:

char* infoString[SIDTUNE_MAX_CREDIT_STRINGS];

其中SIDTUNE_MAX_CREDIT_STRINGS定义为10。

因此内联所有内容,struct成员定义为:

char* infoString[10]

现在,这与我试图解决的其他问题略有不同。

char *数组包含指向其他C字符串的指针。

在这种特定情况下,仅使用3个索引,而其余索引保留。索引如下:

  • infoString [0] =歌曲标题

  • infoString [1] =艺术家姓名

  • infoString [2] =版权/发布者。

我如何以可以从C#访问每个字符串的方式调用/调用此方法?制作单独返回每个函数的C ++函数不是一种选择。

1 个答案:

答案 0 :(得分:0)

假设函数类似于GetSongInfo(int songID, LPInfostring songinfo),您可以将struct定义为具有IntPtr数组。但是,您必须注意内存泄漏,因为调用函数可能希望您释放为返回的字符串分配的内存。

target.h:

typedef struct SongInfo
{
    char* infoString[10];
} *LPSongInfo;

extern "C" __declspec(dllexport) int GetSongInfo(int songID, LPSongInfo info);

target.c:

extern "C" __declspec(dllexport) int GetSongInfo(int songID, LPSongInfo demo)
{
    demo->infoString[0] = "Hello world";
    demo->infoString[1] = "Hello 1";
    demo->infoString[2] = "Hello 2";

    return TRUE;
}

P / Invoke签名:

[DllImport("PInvokeDll.dll", CallingConvention = CallingConvention.Cdecl)]
private static extern int GetSongInfo(int songID, out SongInfo ts);

[StructLayout(LayoutKind.Sequential)]
struct SongInfo
{
    [MarshalAs(UnmanagedType.ByValArray, SizeConst = 10)]
    public IntPtr[] infoString;
};

使用示例:

SongInfo siStruct;
var num2 = GetSongInfo(101, out siStruct);

// copy the results to managed memory
var results = new string[10];
for (int i = 0; i < 10; i++)
{
    if (siStruct.infoString[i] != IntPtr.Zero)
    {
        // if these were Unicode strings, this would change to PtrToSTringUni
        results[i] = Marshal.PtrToStringAnsi(siStruct.infoString[i]);
    }
}

// results now holds the .Net strings
// if there is an expectation of the caller to free the struct 
// strings, that should happen now

作为不分配内存的函数的替代方法,您可以使用如下所示的结构来自动封送字符串。但是,它将无条件地释放非托管内存,这可能是也可能不是。

[StructLayout(LayoutKind.Sequential)]
struct SongInfo2
{
    [MarshalAs(UnmanagedType.ByValArray, ArraySubType = UnmanagedType.LPStr, SizeConst = 10)]
    public string[] infoString;
};