~ubuntu-branches/ubuntu/trusty/sblim-sfcb/trusty-proposed

« back to all changes in this revision

Viewing changes to fileRepository.h

  • Committer: Bazaar Package Importer
  • Author(s): Thierry Carrez
  • Date: 2009-06-08 12:04:49 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20090608120449-byfplk09rqz8rtg6
Tags: 1.3.3-0ubuntu1
* New upstream release.
* debian/rules: Removed rpath hacks, SFCB default build handles that now.
* Removed 1934753-remove-assignment.diff, now upstream.
* Refreshed patch cim-schema-location.diff

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#ifndef _FILEREPOSITORY_
25
25
#define _FILEREPOSITORY_
26
26
 
27
 
#define BASE "repository"
 
27
//#define BASE "repository"
28
28
 
29
29
typedef struct blobIndex {
30
30
   int freed;
49
49
extern void* getFirst(BlobIndex *bi, int *len, char** keyb, size_t *keybl);
50
50
extern void* getNext(BlobIndex *bi, int *len, char** keyb, size_t *keybl);
51
51
 
 
52
/*
 
53
NOTE: useAlternateRepository must be called prior to
 
54
      calling any other functions from fileRepository.h
 
55
*/
 
56
// override 'repository' option from sfcb.cfg...  full path to repository dir
 
57
extern void useAlternateRepository(const char *inAltRepos);
 
58
    
52
59
#endif