UNIVERS  15.3
UNIVERS base processing software API
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
rtch_client.h
1 /* rtch_client.h */
2 /* $Id: rtch_client.h,v 1.1 2002/04/23 20:34:50 vlad Exp $ */
3 #ifndef __rtch_client_h
4 #define __rtch_client_h
5 
6 #include <X11/Intrinsic.h>
7 
8 #ifdef __cplusplus
9 extern "C" {
10 #endif /* C++ */
11 
12 
13 /* Initialize connection to runtime context help server. */
14 void rtchInitConnection (pid_t spid, Window swid);
15 
16 /* Ask server to display given section. */
17 void rtchSeeSection (Display* dpy, const char* szSection);
18 
19 /* Ask server to load given additional help document. */
20 void rtchLoadAddDoc (Display* dpy, const char* szAddDoc);
21 
22 /* Check for server is alive and valid. */
23 Logic rtchServerAlive ();
24 
25 /* Start the server to see help for program szMainDoc. Options are
26  additional document and help section to see. Client's toplevel
27  widget is optional too (may be NULL). Includes connection
28  initialization. */
29 void rtchStartServer (const char* szMainDoc,
30  Widget wClientToplevel,
31  const char* szAddDoc,
32  const char* szSection);
33 
34 
35 
36 #ifdef __cplusplus
37 };
38 #endif /* C++ */
39 
40 #endif /* rtch_client.h */