~centralelyon2010/inkscape/imagelinks2

« back to all changes in this revision

Viewing changes to src/version.h

  • Committer: kidproto
  • Date: 2006-08-25 07:03:19 UTC
  • Revision ID: kidproto@users.sourceforge.net-20060825070319-49nso3fdlwuveifv
peeled back the gboolean code as it hit on some complexity theory principles...
need to rethink and incrementally change gbooleans to bools

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
 
50
50
#define SP_VERSION_IS_ZERO (v) (!(v).major && !(v).minor)
51
51
 
52
 
bool sp_version_from_string (const gchar *string, Inkscape::Version *version);
 
52
gboolean sp_version_from_string (const gchar *string, Inkscape::Version *version);
53
53
gchar *sp_version_to_string (Inkscape::Version version);
54
 
bool sp_version_inside_range (Inkscape::Version version,
 
54
gboolean sp_version_inside_range (Inkscape::Version version,
55
55
                                  unsigned major_min, unsigned minor_min,
56
56
                                  unsigned major_max, unsigned minor_max);
57
57