首页 | 新闻 | 新品 | 文库 | 方案 | 视频 | 下载 | 商城 | 开发板 | 数据中心 | 座谈新版 | 培训 | 工具 | 博客 | 论坛 | 百科 | GEC | 活动 | 主题月 | 电子展
返回列表 回复 发帖

想做一个字符串数组的.dll

想做一个字符串数组的.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;
}

有点困难

想办法实验一下

希望能够在不久的将来有次合作的机会  群:18994538 QQ: 364304745  个人主页:http://ldmcu.shangwusou.com/

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

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

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

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

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

希望能够在不久的将来有次合作的机会  群:18994538 QQ: 364304745  个人主页:http://ldmcu.shangwusou.com/
返回列表