~ubuntu-branches/ubuntu/hardy/gnomad2/hardy

« back to all changes in this revision

Viewing changes to src/filenaming.h

  • Committer: Bazaar Package Importer
  • Author(s): Shaun Jackman
  • Date: 2004-10-25 10:24:21 UTC
  • Revision ID: james.westby@ubuntu.com-20041025102421-hnnl6uzlkutcibvi
Tags: upstream-2.5.0
ImportĀ upstreamĀ versionĀ 2.5.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* filenaming.h
 
2
   Naming of files stored to and read from harddisk,
 
3
   resource file.
 
4
   Copyright (C) 2001 Linus Walleij
 
5
 
 
6
This file is part of the GNOMAD package.
 
7
 
 
8
GNOMAD is free software; you can redistribute it and/or modify
 
9
it under the terms of the GNU General Public License as published by
 
10
the Free Software Foundation; either version 2, or (at your option)
 
11
any later version.
 
12
 
 
13
You should have received a copy of the GNU General Public License
 
14
along with GNOMAD; see the file COPYING.  If not, write to
 
15
the Free Software Foundation, 59 Temple Place - Suite 330,
 
16
Boston, MA 02111-1307, USA. 
 
17
 
 
18
*/
 
19
 
 
20
#ifndef FILENAMING_INCLUDED
 
21
#define FILENAMING_INCLUDED 1
 
22
 
 
23
#include "metadata.h"
 
24
 
 
25
/* Exported functions */
 
26
gchar *compose_filename(metadata_t *meta);
 
27
void info_from_path(metadata_t *meta);
 
28
 
 
29
#endif