File: global.c

package info (click to toggle)
diablo 1.16.test2-1
  • links: PTS
  • area: non-free
  • in suites: slink
  • size: 1,504 kB
  • ctags: 1,603
  • sloc: ansic: 17,654; perl: 2,054; sh: 260; csh: 118; makefile: 73
file content (35 lines) | stat: -rw-r--r-- 788 bytes parent folder | download
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
33
34
35

/*
 * LIB/GLOBAL.C
 *
 * (c)Copyright 1997, Matthew Dillon, All Rights Reserved.  Refer to
 *    the COPYRIGHT file in the base directory of this distribution 
 *    for specific rights granted.
 */

#include "defs.h"

Prototype char *NewsHome;
Prototype char *SpoolHome;
Prototype char *CacheHome;
Prototype char *OverviewHome;
Prototype char *NewsCfg;
Prototype char *NewsLog;
Prototype char *OutGoing;
Prototype char *DiabloSock;

Prototype volatile int DebugOpt;
Prototype  MemPool *SysMemPool;

char *NewsHome	= NEWSHOME;
char *SpoolHome = SPOOLHOME;
char *CacheHome = CACHEHOME;
char *OverviewHome = OVERVIEWHOME;
char *NewsCfg  =  NEWSCFG;
char *NewsLog  =  NEWSLOG;
char *OutGoing  = OUTGOING;
char *DiabloSock    = DIABLOSOCK;

volatile int  DebugOpt = 0;
MemPool	*SysMemPool;