aboutsummaryrefslogtreecommitdiff
path: root/src/res-types.h
blob: e67163b7332c5b7d0dfa7375e598007979251d85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
/******************************************************************************/
/*  This file is part of libresource                                          */
/*                                                                            */
/*  Copyright (C) 2010 Nokia Corporation.                                     */
/*                                                                            */
/*  This library is free software; you can redistribute                       */
/*  it and/or modify it under the terms of the GNU Lesser General Public      */
/*  License as published by the Free Software Foundation                      */
/*  version 2.1 of the License.                                               */
/*                                                                            */
/*  This library is distributed in the hope that it will be useful,           */
/*  but WITHOUT ANY WARRANTY; without even the implied warranty of            */
/*  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU          */
/*  Lesser General Public License for more details.                           */
/*                                                                            */
/*  You should have received a copy of the GNU Lesser General Public          */
/*  License along with this library; if not, write to the Free Software       */
/*  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  */
/*  USA.                                                                      */
/******************************************************************************/

#ifndef __RES_TYPES_H__
#define __RES_TYPES_H__

#define RESOURCE_BIT(b)   (((uint32_t)1) << (b))

#ifdef	__cplusplus
extern "C" {
#endif

typedef enum {
    resource_audio_playback  = 0,
    resource_video_playback  = 1,
    resource_audio_recording = 2,
    resource_video_recording = 3,
    resource_vibra           = 4,
    resource_leds            = 5,
    resource_backlight       = 6,
    resource_system_button   = 8,
    resource_lock_button     = 9,
    resource_scale_button    = 10,
    resource_snap_button     = 11,
    resource_lens_cover      = 12,
    resource_headset_buttons = 13,
} resource_type_t;


#define RESOURCE_AUDIO_PLAYBACK   RESOURCE_BIT( resource_audio_playback )
#define RESOURCE_VIDEO_PLAYBACK   RESOURCE_BIT( resource_video_playback )
#define RESOURCE_AUDIO_RECORDING  RESOURCE_BIT( resource_audio_recording )
#define RESOURCE_VIDEO_RECORDING  RESOURCE_BIT( resource_video_recording )
#define RESOURCE_VIBRA            RESOURCE_BIT( resource_vibra )
#define RESOURCE_LEDS             RESOURCE_BIT( resource_leds )
#define RESOURCE_BACKLIGHT        RESOURCE_BIT( resource_backlight )
#define RESOURCE_SYSTEM_BUTTON    RESOURCE_BIT( resource_system_button )
#define RESOURCE_LOCK_BUTTON      RESOURCE_BIT( resource_lock_button )
#define RESOURCE_SCALE_BUTTON     RESOURCE_BIT( resource_scale_button )
#define RESOURCE_SNAP_BUTTON      RESOURCE_BIT( resource_snap_button )
#define RESOURCE_LENS_COVER       RESOURCE_BIT( resource_lens_cover )
#define RESOURCE_HEADSET_BUTTONS  RESOURCE_BIT( resource_headset_buttons )

typedef enum {
  resource_auto_release = 0,
  resource_always_reply = 1,
} resource_mode_t;

#define RESOURCE_AUTO_RELEASE     RESOURCE_BIT( resource_auto_release )
#define RESOURCE_ALWAYS_REPLY     RESOURCE_BIT( resource_always_reply )


#ifdef	__cplusplus
};
#endif


#endif	/* __RES_TYPES_H__ */

/* 
 * Local Variables:
 * c-basic-offset: 4
 * indent-tabs-mode: nil
 * End:
 * vim:set expandtab shiftwidth=4:
 */