source: roaraudio/roarclients/roartypes.c @ 4708:c9d40761088a

Last change on this file since 4708:c9d40761088a was 4708:c9d40761088a, checked in by phi, 13 years ago

updated copyright statements

File size: 2.5 KB
Line 
1//roartypes.c:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008-2011
5 *
6 *  This file is part of roarclients a part of RoarAudio,
7 *  a cross-platform sound system for both, home and professional use.
8 *  See README for details.
9 *
10 *  This file is free software; you can redistribute it and/or modify
11 *  it under the terms of the GNU General Public License version 3
12 *  as published by the Free Software Foundation.
13 *
14 *  RoarAudio is distributed in the hope that it will be useful,
15 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
16 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 *  GNU General Public License for more details.
18 *
19 *  You should have received a copy of the GNU General Public License
20 *  along with this software; see the file COPYING.  If not, write to
21 *  the Free Software Foundation, 51 Franklin Street, Fifth Floor,
22 *  Boston, MA 02110-1301, USA.
23 *
24 */
25
26#include <roaraudio.h>
27#undef ROAR_DBG_PREFIX
28#include "../roard/include/roard.h"
29#undef ROAR_DBG_PREFIX
30#define ROAR_DBG_PREFIX "roartypes"
31
32int main (void) {
33 struct { char * name; int len; } types[] = {
34//  { "roar_buffer",         sizeof(struct roar_buffer)         },
35  { "roar_stack",          sizeof(struct roar_stack)          },
36  { "roar_message",        sizeof(struct roar_message)        },
37  { "roar_stream",         sizeof(struct roar_stream)         },
38  { "roar_stream_server",  sizeof(struct roar_stream_server)  },
39  { "roar_mixer_settings", sizeof(struct roar_mixer_settings) },
40  { "roar_sample",         sizeof(struct roar_sample)         },
41  { "roar_client",         sizeof(struct roar_client)         },
42  { "roard_config",        sizeof(struct roard_config)        },
43  { "roar_connection",     sizeof(struct roar_connection)     },
44  { "roar_audio_info",     sizeof(struct roar_audio_info)     },
45  { "roar_meta",           sizeof(struct roar_meta)           },
46  { "roar_vio_calls",      sizeof(struct roar_vio_calls)      },
47  { "roar_stack",          sizeof(struct roar_stack)          },
48  { "roar_vio_defaults",   sizeof(struct roar_vio_defaults)   },
49  { "roar_vio_dstr_chain", sizeof(struct roar_vio_dstr_chain) },
50#ifndef ROAR_WITHOUT_DCOMP_MIDI
51  { "midi_message",        sizeof(struct midi_message)        },
52#endif
53  { "roar_note_octave",    sizeof(struct roar_note_octave)    },
54  { NULL, 0 }
55 }, * c = types - 1;
56
57 while ((++c)->name != NULL)
58  printf("%-20s = %5i Bytes = %6i Bits\n", c->name, c->len, c->len * 8);
59
60 return 0;
61}
62
63//ll
Note: See TracBrowser for help on using the repository browser.