static extern int native_host_service(ENetHost *host, out ENetEvent @event, uint timeout);
public override int host_service(ENetHost *host, out ENetEvent @event, uint timeout) { return(native_host_service(host, out @event, timeout)); }
static extern int native_host_check_events(ENetHost *host, out ENetEvent @event);
public override int host_check_events(ENetHost *host, out ENetEvent @event) { return(native_host_check_events(host, out @event)); }
public abstract int host_service(ENetHost *host, out ENetEvent @event, uint timeout);
public abstract int host_check_events(ENetHost *host, out ENetEvent @event);
public static int enet_host_service(ENetHost *host, out ENetEvent @event, uint timeout) { return(Platform.host_service(host, out @event, timeout)); }
public static int enet_host_check_events(ENetHost *host, out ENetEvent @event) { return(Platform.host_check_events(host, out @event)); }