mmlib 0.1.2

Multimedia Library.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! # Welcome to the mmlib documentation.
//! There is a formats module, go to the documentation for that module, and look for desired file types.

/// This macro is used to quickly re-export modules through a list.
#[macro_export]
macro_rules! quickmodule {
  () => {};
  ($modname:ident) => {
    pub mod $modname;
  };
  ($modname:ident, $($tail:ident),*) => {
    pub mod $modname;
    modlist!($($tail),*);
}}

quickmodule!(formats);