11 lines
379 B
C
11 lines
379 B
C
/* Copyright (C) 2013 Interactive Brokers LLC. All rights reserved. This code is subject to the terms
|
|
* and conditions of the IB API Non-Commercial License or the IB API Commercial License, as applicable. */
|
|
|
|
#pragma once
|
|
struct EClientMsgSink
|
|
{
|
|
virtual void serverVersion(int version, const char *time) = 0;
|
|
virtual void redirect(const char *host, int port) = 0;
|
|
};
|
|
|