~ubuntu-branches/ubuntu/raring/mapserver/raring-security

« back to all changes in this revision

Viewing changes to mapserver.h

  • Committer: Bazaar Package Importer
  • Author(s): Francesco Paolo Lovergine, Alan Boudreault, Francesco Paolo Lovergine
  • Date: 2010-03-24 22:13:25 UTC
  • mfrom: (10.2.6 sid)
  • Revision ID: james.westby@ubuntu.com-20100324221325-g9hwfpfqeiq4fz7m
Tags: 5.6.3-1
[ Alan Boudreault ]
* New upstream release, with important bug fixes.
* Fixed some typo in debian/control.

[ Francesco Paolo Lovergine ]
* Policy bumped to 3.8.4 without changes.
* Removed Andreas Putzo among Uploaders: last contribution dated more than
  two years ago.
* Added shapelib to Suggests in mapserver-bin. 

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/******************************************************************************
2
 
 * $Id: mapserver.h 9674 2010-01-08 21:21:54Z dmorissette $
 
2
 * $Id: mapserver.h 9980 2010-03-22 18:50:43Z dmorissette $
3
3
 *
4
4
 * Project:  MapServer
5
5
 * Purpose:  Primary MapServer include file.
33
33
/*
34
34
** MapServer version - to be updated for every release 
35
35
*/
36
 
#define MS_VERSION "5.6.1"
 
36
#define MS_VERSION "5.6.3"
37
37
 
38
38
#define MS_VERSION_MAJOR    5
39
39
#define MS_VERSION_MINOR    6
40
 
#define MS_VERSION_REV      1
 
40
#define MS_VERSION_REV      3
41
41
 
42
42
#define MS_VERSION_NUM (MS_VERSION_MAJOR*10000+MS_VERSION_MINOR*100+MS_VERSION_REV)
43
43
 
997
997
%mutable;
998
998
#endif /* SWIG */
999
999
 
 
1000
  /*used to force the result retreiving to use getshape instead of msLayerResultGetShape #3305*/
 
1001
  int usegetshape;
 
1002
 
1000
1003
} resultCacheObj;
1001
1004
 
1002
1005
 
1599
1602
MS_DLL_EXPORT void initGrid( graticuleObj *pGraticule );
1600
1603
MS_DLL_EXPORT void initWeb(webObj *web);
1601
1604
MS_DLL_EXPORT void freeWeb(webObj *web);
 
1605
MS_DLL_EXPORT void initResultCache(resultCacheObj *resultcache);
1602
1606
 
1603
1607
MS_DLL_EXPORT featureListNodeObjPtr insertFeatureList(featureListNodeObjPtr *list, shapeObj *shape);
1604
1608
MS_DLL_EXPORT void freeFeatureList(featureListNodeObjPtr list);