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

流媒体/Mpeg4/MP4

开发平台:

Visual C++

  1. /* $Xorg: SMlib.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 _SMLIB_H_
  25. #define _SMLIB_H_
  26. #include <X11/SM/SM.h>
  27. #include <X11/ICE/ICElib.h>
  28. /*
  29.  * Generic SM pointer
  30.  */
  31. typedef IcePointer SmPointer;
  32. /*
  33.  * Connection objects.  Defined in SMlibint.h
  34.  */
  35. typedef struct _SmcConn *SmcConn;
  36. typedef struct _SmsConn *SmsConn;
  37. /*
  38.  * Session Management property
  39.  */
  40. typedef struct {
  41.     int length; /* length (in bytes) of the value */
  42.     SmPointer   value; /* the value */
  43. } SmPropValue;
  44. typedef struct {
  45.     char *name; /* name of property */
  46.     char *type; /* type of property */
  47.     int num_vals; /* number of values in property */
  48.     SmPropValue *vals; /* the values */
  49. } SmProp;
  50. /*
  51.  * SmcCloseConnection status return
  52.  */
  53. typedef enum {
  54.     SmcClosedNow,
  55.     SmcClosedASAP,
  56.     SmcConnectionInUse
  57. } SmcCloseStatus;
  58. /*
  59.  * Client callbacks
  60.  */
  61. typedef void (*SmcSaveYourselfProc) (
  62.     SmcConn /* smcConn */,
  63.     SmPointer /* clientData */,
  64.     int   /* saveType */,
  65.     Bool /* shutdown */,
  66.     int /* interactStyle */,
  67.     Bool /* fast */
  68. );
  69. typedef void (*SmcSaveYourselfPhase2Proc) (
  70.     SmcConn /* smcConn */,
  71.     SmPointer /* clientData */
  72. );
  73. typedef void (*SmcInteractProc) (
  74.     SmcConn /* smcConn */,
  75.     SmPointer /* clientData */
  76. );
  77. typedef void (*SmcDieProc) (
  78.     SmcConn /* smcConn */,
  79.     SmPointer /* clientData */
  80. );
  81. typedef void (*SmcShutdownCancelledProc) (
  82.     SmcConn /* smcConn */,
  83.     SmPointer /* clientData */
  84. );
  85. typedef void (*SmcSaveCompleteProc) (
  86.     SmcConn /* smcConn */,
  87.     SmPointer /* clientData */
  88. );
  89. typedef void (*SmcPropReplyProc) (
  90.     SmcConn /* smcConn */,
  91.     SmPointer /* clientData */,
  92.     int /* numProps */,
  93.     SmProp ** /* props */
  94. );
  95. /*
  96.  * Callbacks set up at SmcOpenConnection time
  97.  */
  98. typedef struct {
  99.     struct {
  100. SmcSaveYourselfProc  callback;
  101. SmPointer  client_data;
  102.     } save_yourself;
  103.     struct {
  104. SmcDieProc  callback;
  105. SmPointer  client_data;
  106.     } die;
  107.     struct {
  108. SmcSaveCompleteProc  callback;
  109. SmPointer  client_data;
  110.     } save_complete;
  111.     struct {
  112. SmcShutdownCancelledProc callback;
  113. SmPointer  client_data;
  114.     } shutdown_cancelled;
  115. } SmcCallbacks;
  116. #define SmcSaveYourselfProcMask (1L << 0)
  117. #define SmcDieProcMask (1L << 1)
  118. #define SmcSaveCompleteProcMask (1L << 2)
  119. #define SmcShutdownCancelledProcMask (1L << 3)
  120. /*
  121.  * Session manager callbacks
  122.  */
  123. typedef Status (*SmsRegisterClientProc) (
  124.     SmsConn  /* smsConn */,
  125.     SmPointer /* managerData */,
  126.     char * /* previousId */      
  127. );
  128. typedef void (*SmsInteractRequestProc) (
  129.     SmsConn /* smsConn */,
  130.     SmPointer /* managerData */,
  131.     int /* dialogType */
  132. );
  133. typedef void (*SmsInteractDoneProc) (
  134.     SmsConn /* smsConn */,
  135.     SmPointer /* managerData */,
  136.     Bool /* cancelShutdown */
  137. );
  138. typedef void (*SmsSaveYourselfRequestProc) (
  139.     SmsConn /* smsConn */,
  140.     SmPointer /* managerData */,
  141.     int   /* saveType */,
  142.     Bool /* shutdown */,
  143.     int /* interactStyle */,
  144.     Bool /* fast */,
  145.     Bool /* global */
  146. );
  147. typedef void (*SmsSaveYourselfPhase2RequestProc) (
  148.     SmsConn /* smsConn */,
  149.     SmPointer /* managerData */
  150. );
  151. typedef void (*SmsSaveYourselfDoneProc) (
  152.     SmsConn /* smsConn */,
  153.     SmPointer /* managerData */,
  154.     Bool /* success */
  155. );
  156. typedef void (*SmsCloseConnectionProc) (
  157.     SmsConn /* smsConn */,
  158.     SmPointer /* managerData */,
  159.     int /* count */,
  160.     char ** /* reasonMsgs */
  161. );
  162. typedef void (*SmsSetPropertiesProc) (
  163.     SmsConn /* smsConn */,
  164.     SmPointer /* managerData */,
  165.     int /* numProps */,
  166.     SmProp ** /* props */
  167. );
  168. typedef void (*SmsDeletePropertiesProc) (
  169.     SmsConn /* smsConn */,
  170.     SmPointer /* managerData */,
  171.     int /* numProps */,
  172.     char ** /* propNames */
  173. );
  174. typedef void (*SmsGetPropertiesProc) (
  175.     SmsConn /* smsConn */,
  176.     SmPointer /* managerData */
  177. );
  178. /*
  179.  * Callbacks set up by a session manager when a new client connects.
  180.  */
  181. typedef struct {
  182.     struct {
  183. SmsRegisterClientProc callback;
  184. SmPointer manager_data;
  185.     } register_client;
  186.     struct {
  187. SmsInteractRequestProc callback;
  188. SmPointer manager_data;
  189.     } interact_request;
  190.     struct {
  191. SmsInteractDoneProc callback;
  192. SmPointer manager_data;
  193.     } interact_done;
  194.     struct {
  195. SmsSaveYourselfRequestProc callback;
  196. SmPointer manager_data;
  197.     } save_yourself_request;
  198.     struct {
  199. SmsSaveYourselfPhase2RequestProc callback;
  200. SmPointer manager_data;
  201.     } save_yourself_phase2_request;
  202.     struct {
  203. SmsSaveYourselfDoneProc callback;
  204. SmPointer manager_data;
  205.     } save_yourself_done;
  206.     struct {
  207. SmsCloseConnectionProc callback;
  208. SmPointer manager_data;
  209.     } close_connection;
  210.     struct {
  211. SmsSetPropertiesProc callback;
  212. SmPointer manager_data;
  213.     } set_properties;
  214.     struct {
  215. SmsDeletePropertiesProc callback;
  216. SmPointer manager_data;
  217.     } delete_properties;
  218.     struct {
  219. SmsGetPropertiesProc callback;
  220. SmPointer manager_data;
  221.     } get_properties;
  222. } SmsCallbacks;
  223. #define SmsRegisterClientProcMask (1L << 0)
  224. #define SmsInteractRequestProcMask (1L << 1)
  225. #define SmsInteractDoneProcMask (1L << 2)
  226. #define SmsSaveYourselfRequestProcMask   (1L << 3)
  227. #define SmsSaveYourselfP2RequestProcMask (1L << 4)
  228. #define SmsSaveYourselfDoneProcMask (1L << 5)
  229. #define SmsCloseConnectionProcMask (1L << 6)
  230. #define SmsSetPropertiesProcMask (1L << 7)
  231. #define SmsDeletePropertiesProcMask (1L << 8)
  232. #define SmsGetPropertiesProcMask (1L << 9)
  233. typedef Status (*SmsNewClientProc) (
  234.     SmsConn  /* smsConn */,
  235.     SmPointer /* managerData */,
  236.     unsigned long * /* maskRet */,
  237.     SmsCallbacks * /* callbacksRet */,
  238.     char ** /* failureReasonRet */
  239. );
  240. /*
  241.  * Error handlers
  242.  */
  243. typedef void (*SmcErrorHandler) (
  244.     SmcConn /* smcConn */,
  245.     Bool /* swap */,
  246.     int /* offendingMinorOpcode */,
  247.     unsigned long  /* offendingSequence */,
  248.     int  /* errorClass */,
  249.     int /* severity */,
  250.     SmPointer /* values */
  251. );
  252. typedef void (*SmsErrorHandler) (
  253.     SmsConn /* smsConn */,
  254.     Bool /* swap */,
  255.     int /* offendingMinorOpcode */,
  256.     unsigned long  /* offendingSequence */,
  257.     int  /* errorClass */,
  258.     int /* severity */,
  259.     SmPointer /* values */
  260. );
  261. /*
  262.  * Function Prototypes
  263.  */
  264. _XFUNCPROTOBEGIN
  265. extern SmcConn SmcOpenConnection (
  266.     char * /* networkIdsList */,
  267.     SmPointer /* context */,
  268.     int /* xsmpMajorRev */,
  269.     int /* xsmpMinorRev */,
  270.     unsigned long /* mask */,
  271.     SmcCallbacks * /* callbacks */,
  272.     char * /* previousId */,
  273.     char ** /* clientIdRet */,
  274.     int /* errorLength */,
  275.     char * /* errorStringRet */
  276. );
  277. extern SmcCloseStatus SmcCloseConnection (
  278.     SmcConn /* smcConn */,
  279.     int /* count */,
  280.     char ** /* reasonMsgs */
  281. );
  282. extern void SmcModifyCallbacks (
  283.     SmcConn /* smcConn */,
  284.     unsigned long /* mask */,
  285.     SmcCallbacks * /* callbacks */
  286. );
  287. extern void SmcSetProperties (
  288.     SmcConn /* smcConn */,
  289.     int               /* numProps */,
  290.     SmProp ** /* props */
  291. );
  292. extern void SmcDeleteProperties (
  293.     SmcConn /* smcConn */,
  294.     int               /* numProps */,
  295.     char ** /* propNames */
  296. );
  297. extern Status SmcGetProperties (
  298.     SmcConn /* smcConn */,
  299.     SmcPropReplyProc /* propReplyProc */,
  300.     SmPointer /* clientData */
  301. );
  302. extern Status SmcInteractRequest (
  303.     SmcConn /* smcConn */,
  304.     int /* dialogType */,
  305.     SmcInteractProc /* interactProc */,
  306.     SmPointer /* clientData */
  307. );
  308. extern void SmcInteractDone (
  309.     SmcConn /* smcConn */,
  310.     Bool  /* cancelShutdown */
  311. );
  312. extern void SmcRequestSaveYourself (
  313.     SmcConn /* smcConn */,
  314.     int /* saveType */,
  315.     Bool  /* shutdown */,
  316.     int /* interactStyle */,
  317.     Bool /* fast */,
  318.     Bool /* global */
  319. );
  320. extern Status SmcRequestSaveYourselfPhase2 (
  321.     SmcConn /* smcConn */,
  322.     SmcSaveYourselfPhase2Proc /* saveYourselfPhase2Proc */,
  323.     SmPointer /* clientData */
  324. );
  325. extern void SmcSaveYourselfDone (
  326.     SmcConn /* smcConn */,
  327.     Bool /* success */
  328. );
  329. extern int SmcProtocolVersion (
  330.     SmcConn /* smcConn */
  331. );
  332. extern int SmcProtocolRevision (
  333.     SmcConn /* smcConn */
  334. );
  335. extern char *SmcVendor (
  336.     SmcConn /* smcConn */
  337. );
  338. extern char *SmcRelease (
  339.     SmcConn /* smcConn */
  340. );
  341. extern char *SmcClientID (
  342.     SmcConn /* smcConn */
  343. );
  344. extern IceConn SmcGetIceConnection (
  345.     SmcConn /* smcConn */
  346. );
  347. extern Status SmsInitialize (
  348.     char * /* vendor */,
  349.     char * /* release */,
  350.     SmsNewClientProc /* newClientProc */,
  351.     SmPointer /* managerData */,
  352.     IceHostBasedAuthProc /* hostBasedAuthProc */,
  353.     int /* errorLength */,
  354.     char * /* errorStringRet */
  355. );
  356. extern char *SmsClientHostName (
  357.     SmsConn /* smsConn */
  358. );
  359. extern char *SmsGenerateClientID (
  360.     SmsConn /* smsConn */
  361. );
  362. extern Status SmsRegisterClientReply (
  363.     SmsConn /* smsConn */,
  364.     char * /* clientId */
  365. );
  366. extern void SmsSaveYourself (
  367.     SmsConn /* smsConn */,
  368.     int /* saveType */,
  369.     Bool  /* shutdown */,
  370.     int /* interactStyle */,
  371.     Bool /* fast */
  372. );
  373. extern void SmsSaveYourselfPhase2 (
  374.     SmsConn /* smsConn */
  375. );
  376. extern void SmsInteract (
  377.     SmsConn /* smsConn */
  378. );
  379. extern void SmsDie (
  380.     SmsConn /* smsConn */
  381. );
  382. extern void SmsSaveComplete (
  383.     SmsConn /* smsConn */
  384. );
  385. extern void SmsShutdownCancelled (
  386.     SmsConn /* smsConn */
  387. );
  388. extern void SmsReturnProperties (
  389.     SmsConn /* smsConn */,
  390.     int /* numProps */,
  391.     SmProp ** /* props */
  392. );
  393. extern void SmsCleanUp (
  394.     SmsConn /* smsConn */
  395. );
  396. extern int SmsProtocolVersion (
  397.     SmsConn /* smsConn */
  398. );
  399. extern int SmsProtocolRevision (
  400.     SmsConn /* smsConn */
  401. );
  402. extern char *SmsClientID (
  403.     SmsConn /* smsConn */
  404. );
  405. extern IceConn SmsGetIceConnection (
  406.     SmsConn /* smsConn */
  407. );
  408. extern SmcErrorHandler SmcSetErrorHandler (
  409.     SmcErrorHandler  /* handler */
  410. );
  411. extern SmsErrorHandler SmsSetErrorHandler (
  412.     SmsErrorHandler  /* handler */
  413. );
  414. extern void SmFreeProperty (
  415.     SmProp * /* prop */
  416. );
  417. extern void SmFreeReasons (
  418.     int /* count */,
  419.     char ** /* reasonMsgs */
  420. );
  421. _XFUNCPROTOEND
  422. #endif /* _SMLIB_H_ */