~ubuntu-branches/ubuntu/hardy/linux-restricted-modules-envy-2.6.24/hardy-proposed

« back to all changes in this revision

Viewing changes to fritz64/fcdslusb/1/fritz/src/libstub.h

  • Committer: Bazaar Package Importer
  • Author(s): Alberto Milone (tseliot)
  • Date: 2008-05-05 11:01:43 UTC
  • Revision ID: james.westby@ubuntu.com-20080505110143-gi9niqn3vkf11h6c
Tags: 2.6.24.500-500.26
* Removed ~envy in the package version
* nvidia-glx{-new, -legacy}-envy all provide nvidia-glx-dev
* Removed version from Conflicts of all the packages

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* 
 
2
 * libstub.h
 
3
 * Copyright (C) 2002, AVM GmbH. All rights reserved.
 
4
 * 
 
5
 * This Software is  free software. You can redistribute and/or
 
6
 * modify such free software under the terms of the GNU Lesser General Public
 
7
 * License as published by the Free Software Foundation; either
 
8
 * version 2.1 of the License, or (at your option) any later version.
 
9
 * 
 
10
 * The free software 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.
 
14
 * 
 
15
 * You should have received a copy of the GNU Lesser General Public
 
16
 * License along with this Software; if not, write to the Free Software
 
17
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA, or see
 
18
 * http://www.opensource.org/licenses/lgpl-license.html
 
19
 * 
 
20
 * Contact: AVM GmbH, Alt-Moabit 95, 10559 Berlin, Germany, email: info@avm.de
 
21
 */
 
22
 
 
23
#ifndef __have_libstub_h__
 
24
#define __have_libstub_h__
 
25
 
 
26
#include "libdefs.h"
 
27
 
 
28
#if defined (OSDEBUG) && defined (NDEBUG)
 
29
# undef NDEBUG
 
30
#endif
 
31
 
 
32
#if defined (DRIVER_TYPE_DSL)
 
33
extern __attr2 lib_callback_t * avm_lib_attach (lib_interface_t *, void *);
 
34
#else
 
35
extern __attr2 lib_callback_t * avm_lib_attach (lib_interface_t *);
 
36
#endif
 
37
 
 
38
extern __attr2 void avm_lib_detach (lib_interface_t *);
 
39
 
 
40
#if defined (DRIVER_TYPE_DSL_RAP) || defined (DRIVER_TYPE_DSL_TM)
 
41
extern __attr2 lib_interface_t * avm_get_interface (void);
 
42
#endif
 
43
 
 
44
#if defined (DRIVER_TYPE_INTERN)
 
45
extern volatile unsigned long avm_time_base;
 
46
#endif
 
47
 
 
48
#endif
 
49