X
xwings
Unregistered / Unconfirmed
GUEST, unregistred user!
我在实现一个接口中,看到接口的一个函数的参数为
ISomeInterface.SomeFunt(Byte** ppdwBuffer,DWORD* pdwLength);
其中参数为
ppdwBuffer
[out] Pointer to a pointer to the buffer.
pdwLength
[out] Pointer to a double word containing the length of the buffer, in bytes.
我是用这个方法实现接口的.
TMyClas=class(TinterfacedObject,ISomeInterface)
public
SomeFunt.....
...
end;
这个函数的参数如何在delphi中表示??
急急.
回答出来给150分
ISomeInterface.SomeFunt(Byte** ppdwBuffer,DWORD* pdwLength);
其中参数为
ppdwBuffer
[out] Pointer to a pointer to the buffer.
pdwLength
[out] Pointer to a double word containing the length of the buffer, in bytes.
我是用这个方法实现接口的.
TMyClas=class(TinterfacedObject,ISomeInterface)
public
SomeFunt.....
...
end;
这个函数的参数如何在delphi中表示??
急急.
回答出来给150分