예제 #1
0
        // **********************************************************************

        public static Result SET_TRANSACTIONS_REPLY_CALLBACK(
            TRANSACTION_REPLY_CALLBACK pfTransactionReplyCallback,
            out int pnExtendedErrorCode,
            byte[] lpstrErrorMessage,
            int dwErrorMessageSize)
        {
            transaction_reply_callback = pfTransactionReplyCallback;
            return(SET_TRANSACTIONS_REPLY_CALLBACK_UNMGR(
                       transaction_reply_callback_unmgr,
                       out pnExtendedErrorCode,
                       lpstrErrorMessage,
                       lpstrErrorMessage.Length));
        }
예제 #2
0
 public static QuikResult SET_TRANSACTIONS_REPLY_CALLBACK(
     TRANSACTION_REPLY_CALLBACK pfTransactionReplyCallback,
     out int pnExtendedErrorCode,
     StringBuilder lpstrErrorMessage,
     int dwErrorMessageSize)
 {
     transaction_reply_callback = pfTransactionReplyCallback;
     return(SET_TRANSACTIONS_REPLY_CALLBACK_UNMGR(
                transaction_reply_callback_unmgr,
                out pnExtendedErrorCode,
                lpstrErrorMessage,
                lpstrErrorMessage.Capacity));
 }
예제 #3
0
    // **********************************************************************

    public static Result SET_TRANSACTIONS_REPLY_CALLBACK(
      TRANSACTION_REPLY_CALLBACK pfTransactionReplyCallback,
      out int pnExtendedErrorCode,
      byte[] lpstrErrorMessage,
      int dwErrorMessageSize)
    {
      transaction_reply_callback = pfTransactionReplyCallback;
      return SET_TRANSACTIONS_REPLY_CALLBACK_UNMGR(
        transaction_reply_callback_unmgr,
        out pnExtendedErrorCode,
        lpstrErrorMessage,
        lpstrErrorMessage.Length);
    }