Path: blob/master/drivers/isdn/hardware/eicon/capifunc.h
15115 views
/* $Id: capifunc.h,v 1.11.4.1 2004/08/28 20:03:53 armin Exp $1*2* ISDN interface module for Eicon active cards DIVA.3* CAPI Interface common functions4*5* Copyright 2000-2003 by Armin Schindler ([email protected])6* Copyright 2000-2003 Cytronics & Melware ([email protected])7*8* This software may be used and distributed according to the terms9* of the GNU General Public License, incorporated herein by reference.10*/1112#ifndef __CAPIFUNC_H__13#define __CAPIFUNC_H__1415#define DRRELMAJOR 216#define DRRELMINOR 017#define DRRELEXTRA ""1819#define M_COMPANY "Eicon Networks"2021extern char DRIVERRELEASE_CAPI[];2223typedef struct _diva_card {24struct list_head list;25int remove_in_progress;26int Id;27struct capi_ctr capi_ctrl;28DIVA_CAPI_ADAPTER *adapter;29DESCRIPTOR d;30char name[32];31} diva_card;3233/*34* prototypes35*/36int init_capifunc(void);37void finit_capifunc(void);3839#endif /* __CAPIFUNC_H__ */404142