~ubuntu-branches/debian/squeeze/nas/squeeze

« back to all changes in this revision

Viewing changes to server/dia/globals.h

  • Committer: Bazaar Package Importer
  • Author(s): Steve McIntyre
  • Date: 2008-10-08 01:18:19 UTC
  • mfrom: (4.1.7 intrepid)
  • Revision ID: james.westby@ubuntu.com-20081008011819-wmr4h2w0298k8t7z
Tags: 1.9.1-5
* Fix pending l10n issues. Debconf translations:
* Swedish. Closes: #491766 (thanks to brother@bsnet.se)
* Arabic. Closes: #500437 (thanks to Ossama Khayat)
* Basque. Closes: #500533 (thanks to Piarres Beobide)
* Brazilian Portuguese. Closes: #500973 (thanks to Felipe
  Augusto van de Wiel)
* Many thanks again to Christian Perrier for his i18n efforts,
  co-ordinating the above.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
2
 * globals.h
3
3
 *
4
 
 * $Id: globals.h,v 1.2 2002/07/10 02:28:41 jon Exp $
 
4
 * $Id: globals.h 180 2006-08-20 05:06:24Z jon $
5
5
 *
6
6
 * Jon Trulson 9/19/99
7
7
 */
12
12
#define GLOBALS_H_INCLUDED
13
13
 
14
14
#ifdef GLOBALS_INSTANTIATE
15
 
# define GEXTERN 
 
15
# define GEXTERN
16
16
#else
17
17
# define GEXTERN extern
18
18
#endif /* GLOBALS_INSTANTIATE */
19
19
 
20
20
GEXTERN ClientPtr *clients;
21
 
GEXTERN ClientPtr  serverClient;
22
 
GEXTERN int  currentMaxClients;   /* current size of clients array */
 
21
GEXTERN ClientPtr serverClient;
 
22
GEXTERN int currentMaxClients;  /* current size of clients array */
23
23
 
24
 
GEXTERN unsigned long globalSerialNumber;
25
24
GEXTERN unsigned long serverGeneration;
26
25
 
27
26
GEXTERN TimeStamp currentTime;
28
 
GEXTERN TimeStamp lastDeviceEventTime;
29
27
 
30
28
GEXTERN char *display;
31
29
 
32
30
GEXTERN long TimeOutValue;
33
 
GEXTERN int     argcGlobal;
34
 
GEXTERN char    **argvGlobal;
 
31
GEXTERN int argcGlobal;
 
32
GEXTERN char **argvGlobal;
35
33
 
36
34
GEXTERN NasConfig_t NasConfig;
37
35
 
38
 
void diaInitGlobals(void);      /* init function */
 
36
void diaInitGlobals(void);      /* init function */
39
37
 
40
 
#undef GEXTERN 
 
38
#undef GEXTERN
41
39
#endif /* GLOBALS_H_INCLUDED */