Board logo

标题: 想做一个字符串数组的.dll [打印本页]

作者: hm1219    时间: 2007-6-14 09:56     标题: 想做一个字符串数组的.dll

最近在研究用C生成.dll,在LV调用,但是在做到字符串数组中不知道为什么总是不成功,下面是在VC下的代码

麻烦版主帮看看,谢谢

// test.cpp : Defines the entry point for the DLL application.
//

#include "stdafx.h"
#include "extcode.h"
#include "string.h"

BOOL APIENTRY DllMain( HANDLE hModule,
                       DWORD  ul_reason_for_call,
                       LPVOID lpReserved
      )
{
    return TRUE;
}

typedef struct 
{
   int dimSize;
   LStrHandle array;
} TD1;
typedef TD1 **TD1Hdl;

extern"C"__declspec(dllexport) void LVArrayChar(TD1Hdl output);

extern"C"__declspec(dllexport) void LVArrayChar(TD1Hdl output)
{
   NumericArrayResize(uB,1L,(UHandle *)&(*(*output) ->array), 100);  
 (*output) -> dimSize = 100;
 strcpy((char*)(*(*output) -> array) ->str,"abcd");
 (*(*output) -> array) -> cnt = 100;
}


作者: chenchao8848    时间: 2007-6-15 09:53

有点困难

想办法实验一下


作者: hm1219    时间: 2007-6-15 13:10

主要是其他类型的都实现调用.DLL了

只有字符数组没有实现,所以请版主帮帮忙

以前出现过类似的情况吗?


作者: chenchao8848    时间: 2007-6-18 09:07

可以考虑采用指针方式解决一下

C里面的都是字符串数组的方式存在的






欢迎光临 电子技术论坛_中国专业的电子工程师学习交流社区-中电网技术论坛 (http://bbs.eccn.com/) Powered by Discuz! 7.0.0