Claus77 Guest
|
Posted: Tue Oct 24, 2006 9:11 am Post subject: COM typedefs |
|
|
hi there,
i'm just programing a com-interface and within my .idl file i define
a struct, somehow like this:
typedef struc struk
{
int a;
long b;
}struk;
which is uses in a method:
test(struk a)
{
....
}
now my problem:
how can i call this function from vb-script without getting an error?
do i have to define the struct in another way as here shown?
in c++ its easy, because i can call the struct directly...
greetings,
claus |
|