UtilDelete.cpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. #include <signaldata/UtilDelete.hpp>
  14. bool 
  15. printUTIL_DELETE_REQ(FILE * out, const Uint32 * data, Uint32 l, Uint16 b){
  16.   (void)l;  // Don't want compiler warning
  17.   (void)b;  // Don't want compiler warning
  18.   UtilDeleteReq* sig = (UtilDeleteReq*)data;
  19.   fprintf(out, " senderData: %d prepareId: %d totalDataLen: %dn",
  20.   sig->senderData,
  21.   sig->prepareId,
  22.   sig->totalDataLen);
  23.   fprintf(out,
  24.           " H'%.8x H'%.8x H'%.8x H'%.8x H'%.8x H'%.8x H'%.8x H'%.8xn"
  25.           " H'%.8x H'%.8x H'%.8x H'%.8x H'%.8x H'%.8x H'%.8x H'%.8xn"
  26.           " H'%.8x H'%.8x H'%.8x H'%.8x H'%.8x H'%.8xn",
  27.           sig->attrData[0], sig->attrData[1], sig->attrData[2],
  28.           sig->attrData[3], sig->attrData[4], sig->attrData[5],
  29.           sig->attrData[6], sig->attrData[7], sig->attrData[8],
  30.           sig->attrData[9], sig->attrData[10], sig->attrData[11],
  31.           sig->attrData[12], sig->attrData[13], sig->attrData[14],
  32.           sig->attrData[15], sig->attrData[16], sig->attrData[17],
  33.           sig->attrData[18], sig->attrData[19], sig->attrData[20],
  34.           sig->attrData[21]
  35.           );
  36.   return true;
  37. }
  38. bool 
  39. printUTIL_DELETE_CONF(FILE * out, const Uint32 * data, Uint32 l, Uint16 b){
  40.   (void)l;  // Don't want compiler warning
  41.   (void)b;  // Don't want compiler warning
  42.   UtilDeleteConf* sig = (UtilDeleteConf*)data;
  43.   fprintf(out, " senderData: %dn", sig->senderData);
  44.   return true;
  45. }
  46. bool 
  47. printUTIL_DELETE_REF(FILE * out, const Uint32 * data, Uint32 l, Uint16 b){
  48.   (void)l;  // Don't want compiler warning
  49.   (void)b;  // Don't want compiler warning
  50.   UtilDeleteRef* sig = (UtilDeleteRef*)data;
  51.   fprintf(out, " senderData: %dn", sig->senderData);
  52.   fprintf(out, " errorCode: %dn", sig->errorCode);
  53.   return true;
  54. }