Charles,
Can I be absolutely sure that, when an unprototyped function expects a pointer to whatever argument, it is guaranteed to receive that pointer no matter what if I prepend my argument with an explicit @ or &?
Can I be equally sure that, if I prepend my string argument with an explicit (albeit redundant) @ or &, O2 isn't going to choke attempting double redirection rather than single?
Can I be also sure O2 would resolve my explicit @ or & correctly when passing, as unprototyped arguments, the addresses of procedure entry points (including those in the DLLs currently mapped in the process memory), UDT members (even when inside a With/End With block), and array elements?
TIA