Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
だから、私は基本的にこれを変える方法を知りたいと思っています
BYTE *b func(b);
b が既にリダイムされた動的配列である場合、VB6 に変換します。でしょうか
func(b)
また
func(VarPtr(b))
ありがとう、アイドモ。
本当に両方できます。
しかし、簡単な方法はfunc(b)、のfuncようなものfunc(b() as byte)です。次に、b配列は参照によって渡されます。
func
func(b() as byte)
b