diff options
| author | oroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-06-30 20:25:53 +0000 |
|---|---|---|
| committer | oroborus <oroborus@0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e> | 2008-06-30 20:25:53 +0000 |
| commit | 62cdf2b04aa8d0162da8e024d9901ba5743bf5e3 (patch) | |
| tree | 0fee4d7fe539986956cafc8c729d3b68d37d3d7b /src/base/index.h | |
| parent | 55233c4949d7bed70345f6fea44315df151d9ba5 (diff) | |
- hrac moze sucastne chodit aj strielat
- na indexovanie poloziek v list_t sa pouizva index.c ( postaveny na list_t )
- oprava chyby, porgram sa zrutil ak nebolo inicializovane audio
- zexxov patch
git-svn-id: http://opensvn.csie.org/tuxanci_ng@80 0ee4d065-81f0-4d1e-b06c-ff20ad07cc3e
Diffstat (limited to 'src/base/index.h')
| -rw-r--r-- | src/base/index.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/base/index.h b/src/base/index.h new file mode 100644 index 0000000..3799aa3 --- /dev/null +++ b/src/base/index.h @@ -0,0 +1,15 @@ + +#ifndef INDEX_H + +#define INDEX_H + +#include "main.h" +#include "list.h" + +extern list_t* newIndex(); +extern int addToIndex(list_t *list, int index); +extern int getFormIndex(list_t *list, int index); +extern void delFromIndex(list_t *list, int index); +extern void destroyIndex(list_t *list); + +#endif |