File: gworldclock.h

package info (click to toggle)
gworldclock 1.4.4-1
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 980 kB
  • ctags: 158
  • sloc: sh: 3,855; ansic: 2,228; makefile: 68; sed: 16
file content (22 lines) | stat: -rw-r--r-- 363 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/* global definitions needed by several gworldclock files */

#ifndef GWORLDCLOCK
#define GWORLDCLOCK

/* two display columns: Name of zone, and time/date.
   This could be adjusted later to separate time from date.
   Also, store the TZ name here.
*/
enum
{
   TZ_NAME,
   TZ_DESCRIPTION,
   TZ_TIMEDATE,
   LIST_COLUMNS
};


GString timeDisplayFormat;


#endif