source: roaraudio/roarclients/roartypes.c @ 5439:7950543cabbc

Last change on this file since 5439:7950543cabbc was 5381:430b1d26e12d, checked in by phi, 12 years ago

updated copyright years

File size: 2.5 KB
Line 
1//roartypes.c:
2
3/*
4 *      Copyright (C) Philipp 'ph3-der-loewe' Schafft - 2008-2012
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  { "roar_client_server",  sizeof(struct roar_client_server)  },
43  { "roard_config",        sizeof(struct roard_config)        },
44  { "roar_connection",     sizeof(struct roar_connection)     },
45  { "roar_audio_info",     sizeof(struct roar_audio_info)     },
46  { "roar_meta",           sizeof(struct roar_meta)           },
47  { "roar_vio_calls",      sizeof(struct roar_vio_calls)      },
48  { "roar_stack",          sizeof(struct roar_stack)          },
49  { "roar_vio_defaults",   sizeof(struct roar_vio_defaults)   },
50  { "roar_vio_dstr_chain", sizeof(struct roar_vio_dstr_chain) },
51#ifndef ROAR_WITHOUT_DCOMP_MIDI
52  { "midi_message",        sizeof(struct midi_message)        },
53#endif
54  { "roar_note_octave",    sizeof(struct roar_note_octave)    },
55  { NULL, 0 }
56 }, * c = types - 1;
57
58 while ((++c)->name != NULL)
59  printf("%-20s = %5i Bytes = %6i Bits\n", c->name, c->len, c->len * 8);
60
61 return 0;
62}
63
64//ll
Note: See TracBrowser for help on using the repository browser.