SM.h
上传用户:lctgjx
上传日期:2022-06-04
资源大小:8887k
文件大小:3k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: SM.h,v 1.4 2001/02/09 02:03:30 xorgcvs Exp $ */
  2. /*
  3. Copyright 1993, 1998  The Open Group
  4. Permission to use, copy, modify, distribute, and sell this software and its
  5. documentation for any purpose is hereby granted without fee, provided that
  6. the above copyright notice appear in all copies and that both that
  7. copyright notice and this permission notice appear in supporting
  8. documentation.
  9. The above copyright notice and this permission notice shall be included in
  10. all copies or substantial portions of the Software.
  11. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  12. IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  13. FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
  14. OPEN GROUP BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
  15. AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
  16. CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  17. Except as contained in this notice, the name of The Open Group shall not be
  18. used in advertising or otherwise to promote the sale, use or other dealings
  19. in this Software without prior written authorization from The Open Group.
  20. */
  21. /*
  22.  * Author: Ralph Mor, X Consortium
  23.  */
  24. #ifndef _SM_H_
  25. #define _SM_H_
  26. /*
  27.  * Protocol Version
  28.  */
  29. #define SmProtoMajor 1
  30. #define SmProtoMinor 0
  31. /*
  32.  * Interact Style
  33.  */
  34. #define SmInteractStyleNone 0
  35. #define SmInteractStyleErrors 1
  36. #define SmInteractStyleAny 2
  37. /*
  38.  * Dialog Type
  39.  */
  40. #define SmDialogError 0
  41. #define SmDialogNormal 1
  42. /*
  43.  * Save Type
  44.  */
  45. #define SmSaveGlobal 0
  46. #define SmSaveLocal 1
  47. #define SmSaveBoth 2
  48. /*
  49.  * Restart Style Hints
  50.  */
  51. #define SmRestartIfRunning 0
  52. #define SmRestartAnyway 1
  53. #define SmRestartImmediately 2
  54. #define SmRestartNever 3
  55. /*
  56.  * Property names
  57.  */
  58. #define SmCloneCommand "CloneCommand"
  59. #define SmCurrentDirectory "CurrentDirectory"
  60. #define SmDiscardCommand "DiscardCommand"
  61. #define SmEnvironment "Environment"
  62. #define SmProcessID "ProcessID"
  63. #define SmProgram "Program"
  64. #define SmRestartCommand "RestartCommand"
  65. #define SmResignCommand "ResignCommand"
  66. #define SmRestartStyleHint "RestartStyleHint"
  67. #define SmShutdownCommand "ShutdownCommand"
  68. #define SmUserID "UserID"
  69. /*
  70.  * Property types
  71.  */
  72. #define SmCARD8 "CARD8"
  73. #define SmARRAY8 "ARRAY8"
  74. #define SmLISTofARRAY8 "LISTofARRAY8"
  75. /*
  76.  * SM minor opcodes
  77.  */
  78. #define SM_Error 0
  79. #define SM_RegisterClient  1
  80. #define SM_RegisterClientReply  2
  81. #define SM_SaveYourself  3
  82. #define SM_SaveYourselfRequest  4
  83. #define SM_InteractRequest  5
  84. #define SM_Interact  6
  85. #define SM_InteractDone  7
  86. #define SM_SaveYourselfDone  8
  87. #define SM_Die  9
  88. #define SM_ShutdownCancelled 10
  89. #define SM_CloseConnection  11
  90. #define SM_SetProperties  12
  91. #define SM_DeleteProperties  13
  92. #define SM_GetProperties  14
  93. #define SM_PropertiesReply  15
  94. #define SM_SaveYourselfPhase2Request 16
  95. #define SM_SaveYourselfPhase2 17
  96. #define SM_SaveComplete 18
  97. #endif /* _SM_H_ */