Ejemplo n.º 1
0
 private static extern Int32 SetTransactionReplyCallback(TransactionReplyCallback pfTransactionReplyCallback,
                                                         ref Int32 pnExtendedErrorCode, byte[] lpstrErrorMessage, UInt32 dwErrorMessageSize);
Ejemplo n.º 2
0
 public static CallResult SetTransactionReplyCallback(TransactionReplyCallback transactionReplyCallback)
 {
     return(Call(SetTransactionReplyCallbackImpl, transactionReplyCallback));
 }
Ejemplo n.º 3
0
 public QUIKOrderProvider()
 {
     _transactionCallback = new TransactionReplyCallback(TransactionReplyCallbackIMPL);
     _tradeCallback       = new TradeStatusCallback(TradeStatusCallbackIMPL);
     _orderCallback       = new OrderStatusCallback(OrderStatusCallbackIMPL);
 }
Ejemplo n.º 4
0
 private static extern Int32 SetTransactionReplyCallbackImpl(
     TransactionReplyCallback transactionReplyCallback,
     ref Int32 extendedErrorCode,
     byte[] errorMessage,
     UInt32 errorMessageSize);