~oif-team/frame/1.1.4

« back to all changes in this revision

Viewing changes to include/oif/frame-mtdev.h

  • Committer: Chase Douglas
  • Date: 2012-08-15 19:05:52 UTC
  • Revision ID: chase.douglas@canonical.com-20120815190552-ul59r06he8a8j7f8
Rename project to simply 'frame'

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*****************************************************************************
2
2
 *
3
 
 * utouch-frame - Touch Frame Library
 
3
 * frame - Touch Frame Library
4
4
 *
5
5
 * Copyright (C) 2010-2011 Canonical Ltd.
6
6
 *
19
19
 *
20
20
 ****************************************************************************/
21
21
 
22
 
#ifndef UTOUCH_FRAME_MTDEV_H
23
 
#define UTOUCH_FRAME_MTDEV_H
 
22
#ifndef OIF_FRAME_MTDEV_H
 
23
#define OIF_FRAME_MTDEV_H
24
24
 
25
25
#ifdef __cplusplus
26
26
extern "C" {
28
28
 
29
29
#define MTDEV_NO_LEGACY_API
30
30
 
31
 
#include <utouch/frame.h>
 
31
#include <oif/frame.h>
32
32
#include <evemu.h>
33
33
#include <mtdev.h>
34
34
 
35
 
int utouch_frame_is_supported_mtdev(const struct evemu_device *dev);
36
 
 
37
 
int utouch_frame_init_mtdev(utouch_frame_handle fh,
38
 
                            const struct evemu_device *dev);
39
 
 
40
 
const struct utouch_frame *
41
 
utouch_frame_pump_mtdev(utouch_frame_handle fh, const struct input_event *ev);
 
35
int oif_frame_is_supported_mtdev(const struct evemu_device *dev);
 
36
 
 
37
int oif_frame_init_mtdev(oif_frame_handle fh, const struct evemu_device *dev);
 
38
 
 
39
const struct oif_frame *
 
40
oif_frame_pump_mtdev(oif_frame_handle fh, const struct input_event *ev);
42
41
 
43
42
#ifdef __cplusplus
44
43
}