/simpletypesystem/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/simpletypesystem/trunk

« back to all changes in this revision

Viewing changes to src/SimpleTypeSystem.h

  • Committer: Gustav Hartvigsson
  • Date: 2013-09-04 15:05:39 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20130904150539-7xfgt38hv5q3ycl2
Fixed a few things...
And added an error type...

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
#ifndef __H_SIMPLE_TYPE_SYSTEM__
 
3
#define __H_SIMPLE_TYPE_SYSTEM__
 
4
 
 
5
#define SIMPLE_TYPE_SYSTEM_VERSION_MAJOR 0
 
6
#define SIMPLE_TYPE_SYSTEM_VERSION_MINOR 0
 
7
#define SIMPLE_TYPE_SYSTEM_VERSION_PATCH 1
 
8
 
 
9
 
 
10
#include "baseobject.h"
 
11
#include "Error.h"
 
12
#include "Func.h"
 
13
 
 
14
char * s_get_version_string ();
 
15
int s_get_version_major ();
 
16
int s_get_version_minor ();
 
17
int s_get_version_patch ();
 
18
 
 
19
char * s_string_new (const char * s);
 
20
char * s_string_new_with_lenghth (const char * s, size_t len);
 
21
 
 
22
#endif