Stopped.sgm 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <!-- $XConsortium: Stopped.sgm /main/6 1996/09/08 20:16:36 rws $ -->
  2. <!-- (c) Copyright 1995 Digital Equipment Corporation. -->
  3. <!-- (c) Copyright 1995 Hewlett-Packard Company. -->
  4. <!-- (c) Copyright 1995 International Business Machines Corp. -->
  5. <!-- (c) Copyright 1995 Sun Microsystems, Inc. -->
  6. <!-- (c) Copyright 1995 Novell, Inc. -->
  7. <!-- (c) Copyright 1995 FUJITSU LIMITED. -->
  8. <!-- (c) Copyright 1995 Hitachi. -->
  9. <![ %CDE.C.CDE; [<RefEntry Id="CDEMX.XCDI.MAN316.rsml.1">]]>
  10. <![ %CDE.C.XO; [<RefEntry Id="XCDI.MAN316.rsml.1">]]>
  11. <RefMeta>
  12. <RefEntryTitle>Stopped</RefEntryTitle>
  13. <ManVolNum>special file</ManVolNum>
  14. </RefMeta>
  15. <RefNameDiv>
  16. <RefName><Symbol Role="Message">Stopped</Symbol></RefName>
  17. <RefPurpose>a tool has terminated
  18. </RefPurpose>
  19. </RefNameDiv>
  20. <!-- $XConsortium: Stopped.sgm /main/6 1996/09/08 20:16:36 rws $-->
  21. <!-- CDE Common Source Format, Version 1.0.0-->
  22. <!-- (c) Copyright 1993, 1994, 1995 Hewlett-Packard Company-->
  23. <!-- (c) Copyright 1993, 1994, 1995 International Business Machines Corp.-->
  24. <!-- (c) Copyright 1993, 1994, 1995 Sun Microsystems, Inc.-->
  25. <!-- (c) Copyright 1993, 1994, 1995 Novell, Inc.-->
  26. <RefSynopsisDiv>
  27. <Synopsis>Stopped(in string <Emphasis>vendor</Emphasis>,
  28. in string <Emphasis>toolName</Emphasis>,
  29. in string <Emphasis>toolVersion</Emphasis>);
  30. </Synopsis>
  31. </RefSynopsisDiv>
  32. <RefSect1>
  33. <Title>DESCRIPTION</Title>
  34. <Para>The
  35. <Symbol Role="Message">Stopped</Symbol> notice announces that
  36. a tool has exited.
  37. </Para>
  38. <Para>The
  39. <Emphasis>vendor</Emphasis> argument
  40. is the vendor of the terminated tool.
  41. </Para>
  42. <Para>The
  43. <Emphasis>toolName</Emphasis> argument
  44. is the name of the terminated tool.
  45. </Para>
  46. <Para>The
  47. <Emphasis>toolVersion</Emphasis> argument
  48. is the version of the terminated tool.
  49. </Para>
  50. </RefSect1>
  51. <RefSect1>
  52. <Title>EXAMPLES</Title>
  53. <Para>A pattern observing the
  54. <Symbol Role="Message">Stopped</Symbol> request can be registered as
  55. in the following example:
  56. </Para>
  57. <InformalExample Remap="indent">
  58. <ProgramListing>Tt_pattern pat = tt_pattern_create();
  59. tt_pattern_category_set(pat, TT_OBSERVE);
  60. tt_pattern_scope_add(pat, TT_SESSION);
  61. char *ses = tt_default_session();
  62. tt_pattern_session_add(pat, ses);
  63. tt_free(ses);
  64. tt_pattern_op_add(pat, Tttk_Started);
  65. tt_pattern_op_add(pat, Tttk_Stopped);
  66. tt_pattern_callback_add(pat, my_callback);
  67. tt_pattern_register(pat);
  68. </ProgramListing>
  69. </InformalExample>
  70. <Para>The
  71. <Symbol Role="Message">Stopped</Symbol> request can be sent with
  72. &cdeman.ttdt.close;.</Para>
  73. </RefSect1>
  74. <RefSect1>
  75. <Title>SEE ALSO</Title>
  76. <Para>&cdeman.tt.free;, &cdeman.tt.pattern.callback.add;, &cdeman.tt.pattern.category.set;, &cdeman.tt.pattern.op.add;, &cdeman.tt.pattern.register;, &cdeman.tt.pattern.scope.add;, &cdeman.tt.pattern.session.add;, &cdeman.ttdt.close;; <Symbol Role="Message">Started</Symbol> notice.
  77. </Para>
  78. </RefSect1>
  79. </RefEntry>
  80. <!--fickle 1.12 mancsf-to-docbook 1.2 08/07/95 23:18:47-->