Keep on documenting objects.
[mmediamanager.git] / libmmanager / mm-types.h
blob5f5e3f98c854f06035a83eae292116578e0a445d
1 /* MManager - a Desktop wide manager for multimedia applications.
3 * Copyright (C) 2008 Cosimo Cecchi <cosimoc@gnome.org>
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version.
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the
17 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 * Boston, MA 02111-1307, USA.
21 #ifndef __MM_TYPES_H__
22 #define __MM_TYPES_H__
24 /**
25 * MMApplicationType:
26 * @MM_APPLICATION_NONE: initializer.
27 * @MM_APPLICATION_PHOTO: application supports photo management.
28 * @MM_APPLICATION_MUSIC: application supports music management.
29 * @MM_APPLICATION_VIDEO: application supports video management.
31 * Media types that applications can support.
34 typedef enum {
35 MM_APPLICATION_NONE,
36 MM_APPLICATION_PHOTO,
37 MM_APPLICATION_MUSIC,
38 MM_APPLICATION_VIDEO
39 } MMApplicationType;
41 /**
42 * MMComparisionOperator:
43 * @MM_COMP_NONE: initializer.
44 * @MM_COMP_EQUAL: equal to.
45 * @MM_COMP_GREATER: greater than.
46 * @MM_COMP_LESS: less than.
47 * @MM_COMP_GREATER_EQUAL: greater or equal than.
48 * @MM_COMP_LESS_EQUAL: less or equal than.
50 * Comparision operators.
53 typedef enum {
54 MM_COMP_NONE,
55 MM_COMP_EQUAL,
56 MM_COMP_GREATER,
57 MM_COMP_LESS,
58 MM_COMP_GREATER_EQUAL,
59 MM_COMP_LESS_EQUAL
60 } MMComparisionOperator;
62 #endif /* __MM_TYPES_H__ */