~ubuntu-branches/ubuntu/trusty/cheese/trusty

« back to all changes in this revision

Viewing changes to libcheese/cheese-fileutil.h

  • Committer: Bazaar Package Importer
  • Author(s): Laurent Bigonville
  • Date: 2011-07-23 00:37:49 UTC
  • mfrom: (1.3.6 upstream)
  • mto: (7.3.2 experimental) (1.6.1)
  • mto: This revision was merged to the branch mainline in revision 62.
  • Revision ID: james.westby@ubuntu.com-20110723003749-l1l8kk5wf6iadczb
Tags: upstream-3.0.1
ImportĀ upstreamĀ versionĀ 3.0.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
#ifndef __CHEESE_FILEUTIL_H__
23
23
#define __CHEESE_FILEUTIL_H__
24
24
 
25
 
#define PHOTO_NAME_SUFFIX ".jpg"
26
 
#define VIDEO_NAME_SUFFIX ".ogv"
 
25
#include <glib-object.h>
 
26
 
 
27
#define CHEESE_PHOTO_NAME_SUFFIX ".jpg"
 
28
#define CHEESE_VIDEO_NAME_SUFFIX ".ogv"
27
29
 
28
30
G_BEGIN_DECLS
29
31
 
30
 
#include <glib-object.h>
31
 
 
32
32
#define CHEESE_TYPE_FILEUTIL (cheese_fileutil_get_type ())
33
33
#define CHEESE_FILEUTIL(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), CHEESE_TYPE_FILEUTIL, CheeseFileUtil))
34
34
#define CHEESE_FILEUTIL_CLASS(klass)    (G_TYPE_CHECK_CLASS_CAST ((klass), CHEESE_TYPE_FILEUTIL, CheeseFileUtilClass))
57
57
GType           cheese_fileutil_get_type (void);
58
58
CheeseFileUtil *cheese_fileutil_new (void);
59
59
 
60
 
gchar *cheese_fileutil_get_video_path (CheeseFileUtil *fileutil);
61
 
gchar *cheese_fileutil_get_photo_path (CheeseFileUtil *fileutil);
62
 
gchar *cheese_fileutil_get_path_before_224 (CheeseFileUtil *fileutil);
63
 
gchar *cheese_fileutil_get_new_media_filename (CheeseFileUtil *fileutil, CheeseMediaMode mode);
64
 
void   cheese_fileutil_reset_burst (CheeseFileUtil *fileutil);
 
60
const gchar *cheese_fileutil_get_video_path (CheeseFileUtil *fileutil);
 
61
const gchar *cheese_fileutil_get_photo_path (CheeseFileUtil *fileutil);
 
62
gchar       *cheese_fileutil_get_path_before_224 (CheeseFileUtil *fileutil);
 
63
gchar       *cheese_fileutil_get_new_media_filename (CheeseFileUtil *fileutil, CheeseMediaMode mode);
 
64
void         cheese_fileutil_reset_burst (CheeseFileUtil *fileutil);
65
65
 
66
66
G_END_DECLS
67
67