VC中做一个DLL,接口函数如下:
LPSTR test(LPSTR dd)
{
  dd="ddddddd";
  return dd;
}
即传入一个LPSTR 的参数,将参数修改后再返回。在VC中应该怎样写,在VB中应怎样声明引用?