Updated docs/README-ATTACHMENTS, mainly to reflect that no setup is
[mmh] / docs / historical / mh-6.8.5 / support / bboards / mmdfI / conf_chan.add
1 /* additions to conf_chan.c for BBoards support */
2
3 /* 1.  Add this structure after the definition for ch_sloc */
4
5 Chan    ch_sbboards = {
6     'x', DLVRREG, "ch_bboards", 
7          "BBoards", "bboards", "bboards.names",
8          locname, "BBoards", NOLOGIN, NOPHONE, 0, 0l
9 };
10
11
12 /* 2.  Add &ch_sbboards to ch_tbsrch[] after &ch_sloc */
13
14 Chan * ch_tbsrch[] =              /* order chan tables searched         */
15 {
16         &ch_sloc,
17         &ch_sbboards,
18 /* ... */
19         (Chan *) 0
20 };
21
22
23 /* 3.  Add &ch_sbboards to ch_exsrch[] after &ch_sloc */
24
25 Chan * ch_exsrch[] =              /* order of active chan execution     */
26 {
27         &ch_sloc,
28         &ch_sbboards,
29 /* ... */
30         (Chan *) 0
31 };