File: parsemeta.h

package info (click to toggle)
netrek-client-cow 3.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 5,028 kB
  • sloc: ansic: 42,893; sh: 2,959; python: 380; makefile: 87
file content (32 lines) | stat: -rw-r--r-- 641 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#ifndef meta_h_header
#define meta_h_header
#ifdef META

/*
   meta.h
*/


/* Function Definitions */

void parsemeta();

void metawindow(void);
/*
 *  Show the meta server menu window
 */

void metainput(void);
/*  
 *  Wait for actions in the meta-server window.
 *
 *  This is really the meta-server window's own little input() function.
 *  It is needed so we don't have to use all the bull in the main
 *  input(). Plus to use it I'd have to call mapAll() first and the client
 *  would read in the default server and then call it up before I can
 *  select a server.
 */


#endif /* defined META */ 
#endif /* defined meta_h_header */