1

到目前为止,我已经弄清楚了如何使用 Typelib 将 Unicode 字符串 bSTR 传入和传出 Euphoria DLL。到目前为止,我无法弄清楚的是如何创建和传回 BSTR 数组。

到目前为止我拥有的代码(以及include用于 EuCOM 本身和部分 Win32lib 的 s):

global function REALARR()
  sequence seq
  atom psa
  atom var
  seq = { "cat","cow","wolverine" }
  psa = create_safearray( seq, VT_BSTR )
  make_variant( var, VT_ARRAY + VT_BSTR, psa )
  return var
end function

类型库的一部分是:

  [
     helpstring("get an array of strings"), 
     entry("REALARR")
  ] 
  void __stdcall REALARR( [out,retval] VARIANT* res );

VB6中的测试代码是:

...
Dim v() as String
V = REALARR()
...

到目前为止,我设法得到的只是来自 DLL 的错误“0”。有任何想法吗?任何人?

4

3 回答 3

1

您应该使用该create_safearray()功能。它在实用程序下记录(隐藏?)。基本上,将您的 BSTR 指针放入一个序列并将其传递给create_safearray()

sequence s, bstrs
s = {"A", "B"}
bstrs = {}
for i = 1 to length(s) do
    bstrs &= alloc_bstr( s[i] )
end for

atom array
array = create_safearray( bstrs, VT_BSTR )

...

destroy_safearray( array )
于 2009-11-04T18:43:49.587 回答
0

我已经通过他们的论坛与 Euphoria 人取得了联系,并且已经走到了这一步。该例程在 make_variant 行上失败。除此之外,我还没有弄清楚,他们也没有。

global function REALARR() 
  atom psa 
  atom var 
  atom bounds_ptr 
  atom dim 
  atom bstr 
  object void 

  dim = 1 
  bounds_ptr = allocate( 8 * dim ) -- now figure out which part is Extent and which is LBound 
  poke4( bounds_ptr, { 3, 0 } ) -- assuming Extent and LBound in that order 

  psa = c_func( SafeArrayCreate, { VT_BSTR, 1, bounds_ptr } ) 

  bstr = alloc_bstr( "cat" ) 
  poke4( bounds_ptr, 0 ) 
  void = c_func( SafeArrayPutElement, {psa, bounds_ptr, bstr}) 
  free_bstr( bstr ) 

  bstr = alloc_bstr( "cow" ) 
  poke4( bounds_ptr, 1 ) 
  void = c_func( SafeArrayPutElement, {psa, bounds_ptr, bstr}) 
  free_bstr( bstr ) 

  bstr = alloc_bstr( "wolverine" ) 
  poke4( bounds_ptr, 2 ) 
  void = c_func( SafeArrayPutElement, {psa, bounds_ptr, bstr}) 
  free_bstr( bstr ) 

  make_variant( var, VT_ARRAY + VT_BSTR, psa )  
  return var 
end function 
于 2008-10-17T07:15:11.317 回答
0

好的,var还没有初始化。这并不重要,因为例程仍然崩溃。尽管如此,还是需要一个

var = allocate( 16 )

就在 make_variant 之前

于 2008-10-20T15:42:03.973 回答