diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2004-06-08 22:33:40 +0000 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2004-06-08 22:33:40 +0000 |
commit | c9ec7506c10d4e12778d165e93545342a5faabeb (patch) | |
tree | 4055005ecbc113cc63b72a76d7b452e96dfc9a14 /mixlib/xmix_device.h | |
parent | 44c49815bb6d5eb765462fbb9a98d3d1ac5b3ab1 (diff) | |
download | mdk-c9ec7506c10d4e12778d165e93545342a5faabeb.tar.gz mdk-c9ec7506c10d4e12778d165e93545342a5faabeb.tar.bz2 |
the console is now in/out.
Diffstat (limited to 'mixlib/xmix_device.h')
-rw-r--r-- | mixlib/xmix_device.h | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/mixlib/xmix_device.h b/mixlib/xmix_device.h index faa8334..a05d207 100644 --- a/mixlib/xmix_device.h +++ b/mixlib/xmix_device.h @@ -3,22 +3,22 @@ * ------------------------------------------------------------------ * Last change: Time-stamp: <2001-05-07 23:59:35 jao> * ------------------------------------------------------------------ - * Copyright (C) 2001 Free Software Foundation, Inc. - * + * Copyright (C) 2001, 2004 Free Software Foundation, Inc. + * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. - * + * * This program 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 General Public License for more details. - * + * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - * + * */ @@ -47,14 +47,15 @@ typedef struct mix_device_vtable_t mix_dev_destroy_t destroy; } mix_device_vtable_t; -/* default vtable */ +/* default vtables */ extern const mix_device_vtable_t *DEF_DEV_VTABLE_; +extern const mix_device_vtable_t *CONSOLE_DEV_VTABLE_; /* Actual definition of a mix device, which can be cast to a mix file. */ -struct mix_device_t +struct mix_device_t { mix_iochannel_t *file; mix_device_type_t type; |