Interface IEnumAddressCallback
public interface IEnumAddressCallback extends IUnknown
{
// Methods
public void callbackEnumAddress(_Guid typeGuid,
byte[] addressData, int addressSize, IUnknown context);
}
IUnknown
|
+--IEnumAddressCallback
public void callbackEnumAddress(_Guid typeGuid, byte[] addressData,
int addressSize, IUnknown context);
Application-defined callback function for the DirectPlayLobby.enumAddress method.
Return Value:
No return value.
Parameter | Description |
typeGuid
| A globally unique identifier (GUID) indicating the type of this data chunk.
|
addressData
| The address of the constant data.
|
addressSize
| The size of the address.
|
context
| The context passed to the callback function.
|