Subversion Repositories SvarDOS

Rev

Rev 225 | Rev 238 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 225 Rev 237
Line 11... Line 11...
11
  char *name;
11
  char *name;
12
  char *location;
12
  char *location;
13
  struct customdirs *next;
13
  struct customdirs *next;
14
};
14
};
15
 
15
 
16
/* Loads the list of custom directories from the config file specified in %FDNPKG%.
16
/* Loads the list of custom directories from the config file
17
 * Returns 0 on success, or -1 on failure. */
17
 * Returns 0 on success, or -1 on failure. */
18
int loadconf(char *cfgfile, struct customdirs **dirlist, int *flags);
18
int loadconf(const char *dosdir, struct customdirs **dirlist, int *flags);
19
 
19
 
20
/* Free the memory allocated at configuration load. */
20
/* Free the memory allocated at configuration load. */
21
void freeconf(struct customdirs **dirlist);
21
void freeconf(struct customdirs **dirlist);
22
 
22
 
23
#endif
23
#endif