Discussion:
writefile to activex
(too old to reply)
ivan.p
2010-03-21 19:07:45 UTC
Permalink
Hello,

We all know the declaration of Windows.WriteFile() function that has
second parameter untyped (const buff;)

How can we make the similar declaration in ActiveX and for example
from MyWriteFile() that has same declaration as WriteFile() call
ActiveXObject.MyWriteFile() declared in activex?
Maarten Wiltink
2010-03-21 20:11:45 UTC
Permalink
Post by ivan.p
We all know the declaration of Windows.WriteFile() function that has
second parameter untyped (const buff;)
How can we make the similar declaration in ActiveX and for example
from MyWriteFile() that has same declaration as WriteFile() call
ActiveXObject.MyWriteFile() declared in activex?
Use a pointer to byte or similar virtually meaningless type.

The untyped parameter is probably already a pointer in disguise.

Groetjes,
Maarten Wiltink

Loading...