~ubuntu-branches/ubuntu/jaunty/xvidcap/jaunty-proposed

« back to all changes in this revision

Viewing changes to src/frame.h

  • Committer: Bazaar Package Importer
  • Author(s): John Dong
  • Date: 2008-02-25 15:47:12 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080225154712-qvr11ekcea4c9ry8
Tags: 1.1.6-0.1ubuntu1
* Merge from debian-multimedia (LP: #120003), Ubuntu Changes:
 - For ffmpeg-related build-deps, remove cvs from package names.
 - Standards-Version 3.7.3
 - Maintainer Spec

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/**
 
2
 * \file frame.h
 
3
 */
 
4
 
1
5
/*
2
 
 * frame.h
3
 
 *
4
6
 * Copyright (C) 1997 Rasca Gmelch, Berlin
 
7
 * Copyright (C) 2003-07 Karl H. Beckers, Frankfurt
5
8
 *
6
9
 * This program is free software; you can redistribute it and/or modify
7
10
 * it under the terms of the GNU General Public License as published by
10
13
 *
11
14
 * This program is distributed in the hope that it will be useful,
12
15
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
17
 * GNU General Public License for more details.
15
18
 *
16
19
 * You should have received a copy of the GNU General Public License
18
21
 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
22
 */
20
23
 
21
 
XRectangle XVC_frame_rectangle;
22
 
int XVC_frame_lock;
23
 
 
24
 
XRectangle *GetArea (void);
25
 
int IsFrameLocked (void);
 
24
#ifndef __XVC_FRAME_H__
 
25
#define __XVC_FRAME_H__
 
26
 
 
27
XRectangle *xvc_get_capture_area (void);
 
28
int xvc_is_frame_locked (void);
 
29
void xvc_set_frame_locked (int);
 
30
void xvc_get_window_attributes (Window win, XWindowAttributes * wa);
 
31
 
 
32
// the following are implementation dependent and actually implemented
 
33
// in gnome_frame.c
 
34
void xvc_frame_drop_capture_display ();
 
35
Display *xvc_frame_get_capture_display ();
 
36
 
 
37
#endif     // __XVC_FRAME_H__