Message.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /*
  2. * CDE - Common Desktop Environment
  3. *
  4. * Copyright (c) 1993-2012, The Open Group. All rights reserved.
  5. *
  6. * These libraries and programs are free software; you can
  7. * redistribute them and/or modify them under the terms of the GNU
  8. * Lesser General Public License as published by the Free Software
  9. * Foundation; either version 2 of the License, or (at your option)
  10. * any later version.
  11. *
  12. * These libraries and programs are distributed in the hope that
  13. * they will be useful, but WITHOUT ANY WARRANTY; without even the
  14. * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  15. * PURPOSE. See the GNU Lesser General Public License for more
  16. * details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with these libraries and programs; if not, write
  20. * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
  21. * Floor, Boston, MA 02110-1301 USA
  22. */
  23. /*
  24. * File: Message.h $XConsortium: Message.h /main/5 1996/03/01 16:36:42 drk $
  25. * Language: C
  26. *
  27. * (c) Copyright 1990, Hewlett-Packard Company, all rights reserved.
  28. *
  29. * (c) Copyright 1993, 1994 Hewlett-Packard Company *
  30. * (c) Copyright 1993, 1994 International Business Machines Corp. *
  31. * (c) Copyright 1993, 1994 Sun Microsystems, Inc. *
  32. * (c) Copyright 1993, 1994 Novell, Inc. *
  33. */
  34. #ifndef _Dt_message_h
  35. #define _Dt_message_h
  36. #include <Dt/DataTypes.h>
  37. #include <Dt/DtP.h>
  38. #include <Dt/Service.h>
  39. /* This header file is a modifed version of <Xv/Message.h> that
  40. * provides compatibility between the BMS messaging and the new
  41. * ICCCM messaging used in DT.
  42. *
  43. * The following symbols that were defined in <Xv/Message.h> are
  44. * no longer available. Any code that depended on them will have
  45. * to be rewritten:
  46. *
  47. * DtServerDeathFn
  48. * DtCloseMsgServerConnect
  49. * DtAddFailNotificationCallback
  50. * DtStatusResponse
  51. * DtUniqueRequestId
  52. * DtSendFailNotification
  53. * DtSendMsg
  54. */
  55. /**********************************
  56. *
  57. * Message Format
  58. *
  59. **********************************/
  60. /*
  61. * DT messages have the following format:
  62. *
  63. * Request message: <request> [args ...]
  64. * Reply message: <SUCCESS | FAILURE> [args ...]
  65. * Notify message: <notification> [args ...]
  66. *
  67. * The following fields in BMS messages are no longer supported:
  68. *
  69. * DT_MSG_SENDER
  70. * DT_MSG_REQUEST_ID
  71. * DT_MSG_TOOL
  72. * DT_MSG_HOST
  73. * DT_MSG_DIR
  74. * DT_MSG_FILE
  75. */
  76. #define DT_MSG_TYPE 0
  77. #define DT_MSG_COMMAND 0
  78. #define DT_MSG_DATA_1 1
  79. #define DT_MSG_DATA_2 2
  80. #define DT_MSG_DATA_3 3
  81. #define DT_MSG_DATA_4 4
  82. #define DT_MSG_DATA_5 5
  83. #define DT_MSG_DATA_6 6
  84. #define DT_MSG_DATA_7 7
  85. #define DT_MSG_DATA_8 8
  86. #define DT_MSG_DATA_9 9
  87. #define DT_MSG_DATA_10 10
  88. #define DT_MSG_DATA_11 11
  89. #define DT_MSG_DATA_12 12
  90. #define DT_MSG_DATA_13 13
  91. #define DT_MSG_DATA_14 14
  92. #define DT_MSG_DATA_15 15
  93. #define DT_MSG_DATA_16 16
  94. #define DT_MSG_DATA_17 17
  95. #define DT_MSG_DATA_18 18
  96. #define DT_MSG_DATA_19 19
  97. #define DT_MSG_DATA_20 20
  98. #define DtDONT_CARE_FIELD "*"
  99. /*
  100. If a particular message does not require a value in one of the
  101. fields, use DtDONT_CARE_FIELD for the value of the field.
  102. */
  103. #endif /*_Dt_message_h*/
  104. /* Do not add anything after this endif. */