~ubuntu-branches/ubuntu/natty/libgweather/natty-proposed

« back to all changes in this revision

Viewing changes to libgweather/gweather-win32.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2009-07-28 14:24:16 UTC
  • mfrom: (1.1.16 upstream)
  • Revision ID: james.westby@ubuntu.com-20090728142416-s4e6lwvxpve8ypfm
Tags: 2.26.2.1-0ubuntu1
* New upstream version
* debian/patches/01_gettext_not_xml.patch,
  debian/patches/99_ltmain_as-needed.patch:
  - new version update

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
#ifndef __GWEATHER_WIN32_H__
22
22
#define __GWEATHER_WIN32_H__
23
23
 
24
 
G_BEGIN_DECLS
25
 
 
26
 
#ifdef G_OS_WIN32
 
24
#ifdef _WIN32
27
25
 
28
26
#define localtime_r(t,tmp) (localtime (t) ? ((*tmp) = *localtime (t), tmp) : NULL)
29
27
 
33
31
#undef ZONEINFO_DIR
34
32
#define ZONEINFO_DIR _gweather_win32_get_zoneinfo_dir ()
35
33
 
 
34
#undef GWEATHER_XML_LOCATION_DIR
 
35
#define GWEATHER_XML_LOCATION_DIR _gweather_win32_get_xml_location_dir ()
 
36
 
36
37
char *_gweather_win32_get_locale_dir (void);
37
38
char *_gweather_win32_get_zoneinfo_dir (void);
 
39
char *_gweather_win32_get_xml_location_dir (void);
38
40
 
39
41
#endif
40
42
 
41
 
G_END_DECLS
42
 
 
43
43
#endif /* __GWEATHER_WIN32_H__ */