~ubuntu-branches/ubuntu/jaunty/poppler/jaunty-security

« back to all changes in this revision

Viewing changes to poppler/DateInfo.h

  • Committer: Bazaar Package Importer
  • Author(s): Sebastien Bacher
  • Date: 2009-01-14 16:57:14 UTC
  • mfrom: (1.1.18 upstream)
  • Revision ID: james.westby@ubuntu.com-20090114165714-fc0eniq9604rq6u4
Tags: 0.10.3-0ubuntu1
* New upstream version
* debian/patches/60_manpages-cfg-flag.patch:
  - the change is in the new version
* debian/patches/61_manpages-hyphens.patch:
  - the change is in the new version
* debian/patches/62_pdftops-mandatory-arg.patch:
  - the change is in the new version
* debian/patches/63_do-not-make-ps-arrays-bigger-than-64k-from-big-images-in-patterns.patch:
  - the change is in the new version
* Updated for the libpoppler and libpoppler-glib soname changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//========================================================================
 
2
//
 
3
// DateInfo.h
 
4
//
 
5
// Copyright (C) 2008 Albert Astals Cid <aacid@kde.org>
 
6
//
 
7
// To see a description of the changes please see the Changelog file that
 
8
// came with your tarball or type make ChangeLog if you are building from git
 
9
//
 
10
//========================================================================
 
11
 
 
12
//========================================================================
 
13
//
 
14
// Based on code from pdfinfo.cc
 
15
//
 
16
// Copyright 1998-2003 Glyph & Cog, LLC
 
17
//
 
18
//========================================================================
 
19
 
 
20
#ifndef DATE_INFO_H
 
21
#define DATE_INFO_H
 
22
 
 
23
#include "goo/gtypes.h"
 
24
 
 
25
GBool parseDateString(const char *string, int *year, int *month, int *day, int *hour, int *minute, int *second, char *tz, int *tzHour, int *tzMinute);
 
26
 
 
27
#endif