我在VC编写里动态连接库里面定义了这么个回凋函数
int __stdcall LedShow(int first_Addr,int com_Numb,int led_Numb,char *txt_Display)
然后我在VB里面
 Declare Function LedShow Lib "LedDisplay.dll" (ByVal first As Integer, ByVal comm_port As Integer, ByVal lednum As Integer, ByRef cm As string) As IntegerLedShow(0, 15, 1, "123")
可是我跟踪发现我的123没有传到*txt_Display里面去
请问高手怎么解决啊